body {
    font-family: "Roboto Condensed", sans-serif;
}

.logout-bar {
    background-color: #002856;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgb(225, 228, 228);
    z-index: 1000;
}

.logout-button {
    height: 30px;
    border: none;
    margin-right: 20px;
    background-color: transparent;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.logout-button:hover {
    color: rgba(89, 147, 220, 255);
    transition: color 0.15s;
}

.welcome-message {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-left: 20px;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #002856; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner-text {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #555;
}

/* General container styles */
.container {
    max-width: 800px; /* Reduce width for a cleaner layout */
    margin: 0 auto; /* Center horizontally */
    padding: 20px; /* Add some padding */
    font-size: .9rem; /* Larger text for better readability */
    text-align: left; /* Ensure text and elements are centered */
}

/* Header styles */
h2 {
    font-size: 2rem;
    margin-bottom: 30px; /* Add more space below the header */
    text-align: center;
}

/* Profile card styles */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px; /* Increase padding */
    border-radius: 12px; /* Slightly more rounded corners */
    background-color: #f9f9f9;
    margin-bottom: 20px; /* Add space below the card */
}

.card-header {
    background-color: #002856;
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

/* General button styles */
.btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: 85%; /* Full width for consistency */
}

/* Primary button */
.btn-primary {
    background-color: #002856;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3; /* Slightly darker blue on hover */
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Secondary button */
.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #565e64; /* Slightly darker gray on hover */
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ensure spacing between buttons */
.btn-spacing {
    margin-top: 20px;
}

.btn-outline-primary:hover {
    background-color: #002856;
    color: white;
}

/* Center elements */
.text-center {
    text-align: center;
}

/* Add space around buttons */
.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Custom spacing for buttons */
.btn-spacing {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Button container styling */
.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    align-items: baseline; /* Center buttons horizontally */
    gap: 15px; /* Space between buttons */
    margin-top: 20px; /* Space above the buttons */
}

