        body {
            overflow-x: hidden;
        }

        /* Background overlays */
        #background-overlay {
            top: 0;
            left: 0;
            z-index: -1;
        }

        .bg-dark-strip {
            height: 400px;
            background-color:rgb(0, 55, 110);
        }

        .bg-image {
            background-image: url('../img/bg5.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 250px;
            transition: all 0.3s ease;
            z-index: 1030;
        }

        .sidebar.minimized {
            width: 70px;
        }

        .sidebar .nav-link {
            color: #495057;
        }

        .sidebar .nav-link:hover {
            background-color: #f8f9fa;
            color: #212529;
        }

        .sidebar.minimized .link-text {
            display: none;
        }

        @media (max-width: 991.98px) {
            .sidebar {
                display: none !important;
            }
        }

        /* Main content */
        #main-content {
            margin-left: 250px;
            transition: all 0.3s ease;
        }

        .sidebar.minimized~#main-content {
            margin-left: 70px;
        }

        @media (max-width: 991.98px) {
            #main-content {
                margin-left: 0;
            }
        }

        /* Sidebar footer */
        .sidebar-footer {
            height: 100px;
            margin-top: auto;
            padding: 1rem;
            border-top: 1px solid #dee2e6;
        }

        .sidebar-footer .btn {
            width: 100%;
        }

        .sidebar-footer img {
            max-width: 100%;
            height: 40px;
        }

        .sidebar.minimized .sidebar-footer .btn span,
        .sidebar.minimized .sidebar-footer img {
            display: none;
        }

        .sidebar.minimized .sidebar-footer .btn i {
            margin: 0 auto;
            display: block;
        }

        /* Extra top nav (shown only on small screens) */
        .topbar-second {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid #dee2e6;
        }

        @media (min-width: 992px) {
            .topbar-second {
                display: none !important;
            }
        }

        /* Floating tools nav inside main content */
        .floating-tools {
            background-color: transparent;
            padding: 0.5rem 1rem;
            margin-bottom: 1rem;
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
        }

        .floating-tools .btn {
            border: 1px solid #ccc;
            background-color: transparent;
            color: #333;
            padding: 0.4rem 0.6rem;
        }

        .floating-tools .btn:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .floating-tools .btn span {
            display: none;
        }
  

        /* Custom text-primary color */
.text-primary {
    color: #155e99 !important; /* Your custom blue */
}

/* Custom bg-primary color */
.bg-primary {
    background-color: #155e99 !important; /* Your custom blue */
}

.border-primary {
    border-color: #155e99 !important; /* Replace with your custom blue color */
}

/* Custom btn-primary color */
.btn-primary {
    background-color: #155e99 !important; /* Your custom blue */
    border-color: #155e99 !important; /* Border color */
}

.btn-primary:hover {
    background-color: #155e99 !important; /* Custom hover color */
    border-color: #155e99 !important; /* Hover border color */
}

 
 
 
 
        


