/* ===================== GENERAL ===================== */

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #333;
}

/* ===================== TOP NAVIGATION BAR ===================== */

.topbar {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background: #003473;        /* Kent blue */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.topbar .logo img {
    height: 48px;
    width: auto;
}

.topbar .sitename {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-left: 20px;
}

/* ===================== MAIN CONTENT CONTAINER ===================== */

.container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

/* ===================== BUTTONS ===================== */

.button-link, 
button {
    background: #0054a6;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.button-link:hover, 
button:hover {
    background: #003473;
}

/* ===================== FILE LIST ===================== */

.file-list {
    background: #f0f4ff;
    border: 1px solid #c7d7ff;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.file-list li {
    padding: 8px 0;
    border-bottom: 1px solid #d9e3ff;
}

.file-list li:last-child {
    border-bottom: none;
}

/* ===================== FOOTER ===================== */

.footer {
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 14px;
    padding: 25px 0 35px;
    margin-top: 50px;
    font-weight: 500;
}
.footer a {
    color: #000;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* Ensure main content is left-aligned inside container */
.container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    text-align: left;              /* <--- important */
}

/* Vertical, aligned form layout */
.form-vertical {
    max-width: 400px;              /* same width for all fields */
    margin: 0 auto;                /* center form block itself */
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-row input {
    padding: 9px 10px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-row input:focus {
    outline: none;
    border-color: #0054a6;
    box-shadow: 0 0 4px rgba(0, 84, 166, 0.3);
}
/* INFO BOX STYLING */
.info-box {
    background: #f0f5ff;
    border: 1px solid #c9d8ff;
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 25px;
    line-height: 1.6;
}

.info-box h2 {
    color: #003473;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.info-box h3 {
    margin-top: 20px;
    margin-bottom: 6px;
    color: #0054a6;
    font-size: 18px;
    font-weight: 600;
}

.info-box ul {
    margin-left: 20px;
    margin-top: 5px;
}
.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Optional: Keep both buttons same width for consistency */
.left-btn, .right-btn {
    min-width: 150px;
    text-align: center;
}