/* your-project-root/web-app/public/styles.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 900px;
    width: 100%;
    margin: 20px 0;
}

h1, h2 {
    color: #0056b3;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

h1 {
    text-align: center;
    font-size: 2.2em;
}

h2 {
    font-size: 1.6em;
}

.disclaimer {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

input[type="email"],
input[type="password"],
input[type="text"],
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    margin: 8px 5px 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

button#logout-btn {
    background-color: #dc3545;
}
button#logout-btn:hover {
    background-color: #c82333;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#auth-status {
    margin-top: 15px;
    font-weight: bold;
    color: #0056b3;
}

#summary-results {
    background-color: #e9f0f8;
    border: 1px solid #d0e0f0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.summary-item {
    border-bottom: 1px dashed #c0d0e0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item h3 {
    color: #0056b3;
    margin-top: 0;
    font-size: 1.3em;
}

.summary-item p {
    margin: 5px 0;
}

.summary-item strong {
    color: #0056b3;
}

.summary-item ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
} 
.summary-item ul li {
    margin-bottom: 3px;
}
