/* Import Quicksand font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

/* General body styles */
body, html {
    font-family: 'Quicksand', sans-serif;
    height: 100%;
    margin: 0;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

/* Navbar and footer styles */
.navbar, .footer {
    background-color: #002047 !important;
    color: white;
}

/* Button styles */
.btn {
    border-radius: 0px !important;
}

.btn-outline-custom {
    border: 2px solid #002047 !important;
    color: #002047 !important;
    background-color: transparent !important;
}

.btn-outline-custom:hover {
    background-color: #002047 !important;
    color: white !important;
}

.btn-outline-view-assigned {
    border: 2px solid #28a745 !important;
    color: #28a745 !important;
    background-color: transparent !important;
}

.btn-outline-view-assigned:hover {
    background-color: #28a745 !important;
    color: white !important;
}

.btn-outline-danger {
    border: 2px solid #dc3545 !important;
    color: #dc3545 !important;
    background-color: transparent !important;
}

.btn-outline-danger:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

/* Card styles */
.card {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

/* Footer styles */
.footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

/* Ensure navbar sticks to the top */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Content area styles */
.container.mt-4.flex-grow-1 {
    flex: 1;
    margin-bottom: 20px; /* Add margin to create space between content and footer */
}
