
:root {
    --nd-blue: #0C2340;
    --nd-gold: #AE9142;
}

/* Styles from your original code */
body {
    background-color: Gainsboro;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

h1.fw-bold {
    color: MidnightBlue !important; /* Overriding for consistency */
    text-align: center;
    margin-top: 20px;
}

p {
    text-align: center;
    color: DimGray;
}

main .container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: White;
    border-radius: 8px;
    box-shadow: 0px 4px 10px DimGray;
    border-top: 6px solid MidnightBlue;
}

.table {
    background-color: White;
    border: 2px solid silver;
}

.table th {
    background-color: #f2f2f2;
    color: MidnightBlue;
    font-weight: bold;
}

.card {
    border: 1px solid silver;
    border-radius: 8px;
    box-shadow: 0px 4px 10px DimGray;
}

.card-title {
    font-weight: bold;
    color: MidnightBlue;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: Gold;
    color: #856404;
    font-weight: bold;
}

/* Styles for the new "Personal Progress" section */
.section-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: var(--nd-blue);
    border-bottom: 3px solid var(--nd-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

#personal-progress h3, #personal-progress h5 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: var(--nd-blue);
}

.progress-bar.bg-nd-gold {
    background-color: var(--nd-gold);
    color: var(--nd-blue);
    font-weight: 500;
}
.location{
    color:midnightblue;
    font-weight:bold ;
}

/* Footer Styles */
footer.footer {
    background-color: #f8f9fa; /* Or your preferred footer color */
    color: #212529;
}

footer.footer a {
    color: #0d6efd;
}
