body {
    background-color: #f5f5f5;
}

.navbar {
    border-bottom: 1px solid #eaeaea;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004a99;
}

.modal-content {
    border-radius: 15px;
}

.alert {
    border-radius: 10px;
}

.container {
    margin-top: 2rem;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
}

.msg-box {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1050;
}



.nav-tabs .nav-link {
    border-radius: 0.375rem 0.375rem 0 0;
}

.nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.table-hover tbody tr:hover {
    background-color: #f5f5f5;
}

.card {
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.animate__animated {
    animation-duration: 1s;
}

.footer {
    background: linear-gradient(135deg, #0f4c75, #3282b8);
    color: white;
    padding: 40px 0;
}
 
.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffe135;
}


.footer .social-icons a {
    margin-right: 15px;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.footer .social-icons a:hover {
    transform: scale(1.3);
    background-color: #ffe135;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.fade-in {
    animation: fade-in 1.5s ease-in-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}