html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth; 
    font-family: 'Poppins', sans-serif !important;

}

.content-wrapper {
    flex-grow: 1;  
}
header {
    background-color: #003366;
    padding: 15px;
    text-align: center;
}

.navbar a {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.container {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #003366;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
p {
    font-weight: 400;  
    font-family: 'Poppins', sans-serif;
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.table th {
    background-color: #0056b3;
    color: white;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px 0;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

.btn:hover {
    background-color: #003d80;
}
.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #b02a37;
}


.row .col {
    padding: 10px;
}
.card-title {
    font-size: 1.4rem;
}

.card {
    background-color: #f8f9fc;
    border-radius: 12px;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.02);
}


.user-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
button, input[type="submit"] {
    background-color: #0055a5;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #004080;
}

form {
    margin: 20px 0;
}



footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 5px;
    margin-top: auto; 
}

::-webkit-scrollbar {
    width: 8px; 
    height: 8px; 
}

::-webkit-scrollbar-track {
    background: #252b2d;
}

::-webkit-scrollbar-thumb {
    background-color: #0056b3; 
    border-radius: 5px; 
    border: 2px solid #252b2d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #003d80; 
}
    
