html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.badge {
    font-size: 0.85rem;
    padding: 6px 10px;
}
.notes-column {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card:hover {
    transform: translateY(-3px);
    transition: 0.2s;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
}

.badge {
    min-width: 90px;
}
.card:hover {
    transform: translateY(-4px);
    transition: all 0.2s ease;
}
<style >
/* Custom CSS for enhanced styling */
.transition-all {
    transition: all 0.3s ease-in-out;
}

.hover-shadow {
    transition: all 0.3s ease-in-out;
}

    .hover-shadow:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
    }

.hover-bg-light:hover {
    background-color: #f8f9fa;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.card-body {
    position: relative;
}

    /* Animated pulse for the stats */
    .card-body .badge {
        animation: pulse-light 2s ease-in-out infinite;
    }

@keyframes pulse-light {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Hover effect for list items */
.list-group-item {
    cursor: default;
    transition: all 0.2s ease;
}

    .list-group-item:hover {
        background-color: #f8f9fa;
        border-left: 3px solid #0d6efd;
    }

/* Responsive adjustments */
@@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }
}

/* Custom scrollbar for recent activities */
.list-group {
    max-height: 400px;
    overflow-y: auto;
}

    .list-group::-webkit-scrollbar {
        width: 5px;
    }

    .list-group::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .list-group::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

        .list-group::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

/* Icon sizes */
.bi {
    font-size: 1.2rem;
}

</style >
<!-- Add this CSS to your layout or a separate file -->
<style >
.transition-all {
    transition: all 0.3s ease-in-out;
}

.hover-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
}

.table > :not(caption) > * > * {
    padding: 1rem 0.75rem;
}

.btn-sm {
    padding: 0.25rem 0.6rem;
    font-size: 0.875rem;
}

</style >
<style>
.navbar-brand {
    font-size: 1.3rem;
}

.nav-link {
    transition: all 0.3s ease;
}

    .nav-link:hover {
        transform: translateY(-2px);
    }

.card {
    border-radius: 12px;
}

footer {
    font-size: 14px;
}
</style >
<style >
/* Custom Navbar Styles */
.navbar-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    padding: 0.75rem 0;
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

    .navbar-custom .navbar-brand:hover {
        transform: scale(1.05);
        color: #fff;
    }

    .navbar-custom .navbar-brand i {
        margin-right: 8px;
    }

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-custom .nav-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .navbar-custom .nav-link i {
        margin-right: 6px;
    }

    .navbar-custom .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }

    .navbar-custom .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-custom .nav-link:hover::after {
        width: 60%;
    }

    .navbar-custom .nav-link.active::after {
        width: 60%;
    }

.navbar-custom .navbar-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.navbar-custom .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
}

    .navbar-custom .btn-outline-light:hover {
        background: #fff;
        color: #667eea;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* User Avatar */
.user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .user-avatar i {
        font-size: 1rem;
    }

/* Footer Styles */
.footer-custom {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 3px solid #667eea;
}

    .footer-custom .footer-brand {
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }

        .footer-custom .footer-brand i {
            color: #667eea;
            margin-right: 8px;
        }

    .footer-custom .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

        .footer-custom .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            position: relative;
        }

            .footer-custom .footer-links a:hover {
                color: #fff;
                transform: translateY(-2px);
            }

            .footer-custom .footer-links a::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 2px;
                background: #667eea;
                transition: width 0.3s ease;
            }

            .footer-custom .footer-links a:hover::after {
                width: 100%;
            }

    .footer-custom .footer-divider {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 1.5rem 0;
    }

    .footer-custom .social-icons {
        display: flex;
        gap: 0.75rem;
        justify-content: flex-end;
    }

        .footer-custom .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-custom .social-icons a:hover {
                background: #667eea;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            }

    .footer-custom .copyright {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
    }

/* Responsive */
@@media (max-width: 768px) {
    .navbar-custom .nav-link {
        padding: 0.6rem 0.75rem;
    }

        .navbar-custom .nav-link::after {
            display: none;
        }

    .footer-custom .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-custom .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-custom .text-md-end {
        text-align: center !important;
    }

    .navbar-custom .navbar-text {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    .navbar-custom .btn-outline-light {
        width: 100%;
    }
}

/* Main content spacing */
main {
    min-height: calc(100vh - 220px);
    padding: 1.5rem 0;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 1000;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    }

</style >
<style >
/* Custom Navbar Styles */
.navbar-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    padding: 0.75rem 0;
}

.navbar-custom .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

    .navbar-custom .navbar-brand:hover {
        transform: scale(1.05);
        color: #fff;
    }

    .navbar-custom .navbar-brand i {
        margin-right: 8px;
    }

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-custom .nav-link:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .navbar-custom .nav-link i {
        margin-right: 6px;
    }

    .navbar-custom .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }

    .navbar-custom .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-custom .nav-link:hover::after {
        width: 60%;
    }

    .navbar-custom .nav-link.active::after {
        width: 60%;
    }

.navbar-custom .navbar-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.navbar-custom .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transition: all 0.3s ease;
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
}

    .navbar-custom .btn-outline-light:hover {
        background: #fff;
        color: #667eea;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 0.75rem;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* User Avatar */
.user-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .user-avatar i {
        font-size: 1rem;
    }

/* Footer Styles */
.footer-custom {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 3px solid #667eea;
}

    .footer-custom .footer-brand {
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
    }

        .footer-custom .footer-brand i {
            color: #667eea;
            margin-right: 8px;
        }

    .footer-custom .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

        .footer-custom .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            position: relative;
        }

            .footer-custom .footer-links a:hover {
                color: #fff;
                transform: translateY(-2px);
            }

            .footer-custom .footer-links a::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                width: 0;
                height: 2px;
                background: #667eea;
                transition: width 0.3s ease;
            }

            .footer-custom .footer-links a:hover::after {
                width: 100%;
            }

    .footer-custom .footer-divider {
        border-color: rgba(255, 255, 255, 0.1);
        margin: 1.5rem 0;
    }

    .footer-custom .social-icons {
        display: flex;
        gap: 0.75rem;
        justify-content: flex-end;
    }

        .footer-custom .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-custom .social-icons a:hover {
                background: #667eea;
                color: #fff;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            }

    .footer-custom .copyright {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
    }

/* Responsive */
@@media (max-width: 768px) {
    .navbar-custom .nav-link {
        padding: 0.6rem 0.75rem;
    }

        .navbar-custom .nav-link::after {
            display: none;
        }

    .footer-custom .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-custom .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-custom .text-md-end {
        text-align: center !important;
    }

    .navbar-custom .navbar-text {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    .navbar-custom .btn-outline-light {
        width: 100%;
    }
}

/* Main content spacing */
main {
    min-height: calc(100vh - 220px);
    padding: 1.5rem 0;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 1000;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    }

</style >