* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9fb;
    color: #333;
}

/* HEADER */

.footer {
background-color: #002147;
width:100%;

}


.header {
    background-color: #f5f5f5;
    color: #002147;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
}

.header-text h1 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight:bold;
}

.header-text p {
    line-height: 120%;
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}

/* NAVBAR */
.navbar {
    background: #002147;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.navbar ul li a:hover {
    background-color: #004080;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    background: #004080;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .navbar {
        align-items: stretch;
    }

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar ul li {
        width: 100%;
    }

    .navbar ul li a {
        width: 100%;
        display: block;
    }
}

/* MAIN CONTENT */
.main-content {
    padding: 20px;
    background: white;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

  .status-label {
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
}

/* Green for Verified */
.status-label[data-status="Application Verified"] {
    background-color: green;
    color: white;
}

/* Red for others */
.status-label:not([data-status="Application Verified"]) {
    background-color: red;
    color: white;
}


.grid-container {
    display: inline-block; /* Shrinks to fit content */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    background-color: #f9f9f9;
}

.grid-row {
    display: flex;
    flex-wrap: wrap; /* Allow content to break if needed */
    margin-bottom: 4px;
}

.grid-label {
    font-weight: bold;
    margin-right: 8px;
    
}


.form-section {
        margin: 40px auto;
        max-width: 800px;
        padding: 25px;
        background: #f9f9f9;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        border-radius: 12px;
    }
    .form-section h3 {
        text-align: center;
        margin-bottom: 30px;
        color: #444;
    }