/* _content/BlazorAppSSR/Components/Layout/DirectTaxLayout.razor.rz.scp.css */
/* Custom Layout */
.custom-layout[b-k2m3gwcqfd] {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Sidebar Styling */
.custom-sidebar[b-k2m3gwcqfd] {
    width: 250px;
    background: linear-gradient(180deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Arial', sans-serif; /* Clear and modern font */
}


    .custom-sidebar .nav-section-header[b-k2m3gwcqfd] {
        color: #ffffff; /* Pure white for maximum contrast */
        font-size: 1.1rem; /* Slightly larger size for readability */
        font-weight: 700; /* Bold to differentiate sections */
        text-transform: uppercase; /* Makes it clear and prominent */
        margin-bottom: 0.5rem;
    }

    .custom-sidebar .nav-link[b-k2m3gwcqfd] {
        color: #f2f2f2; /* Almost white for better visibility */
        font-size: 1rem; /* Slightly larger size */
        font-weight: 600; /* Medium-bold for clarity */
        padding: 10px 15px;
        margin-bottom: 8px;
        border-radius: 4px;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px; /* Space between icons and text */
    }


        .custom-sidebar .nav-link:hover[b-k2m3gwcqfd] {
            background-color: rgba(255, 255, 255, 0.2); /* Lighter hover background */
            color: #ffffff; /* Pure white on hover */
            font-weight: 700; /* Extra bold to highlight */
            text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.8); /* Glow effect */
        }

/* Close button inside sidebar (visible in mobile mode) */
.sidebar-close[b-k2m3gwcqfd] {
    font-size: 1.5rem;
    color: white;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 1rem;
    display: none; /* Hidden on larger screens */
}

/* Icons */
.custom-sidebar .nav-link i[b-k2m3gwcqfd] {
    font-size: 1.2rem; /* Slightly larger icons */
    color: #ffffff; /* Matches text color for consistency */
}

/* Indented Links */
.custom-sidebar .nav-link.indented[b-k2m3gwcqfd] {
    padding-left: 20px; /* More indentation for hierarchy */
}

/* Main Content Styling */
.custom-main[b-k2m3gwcqfd] {
    flex: 1;
    margin-left: 250px; /* Space for sidebar in expanded mode */
    transition: margin-left 0.3s ease-in-out;
    background-color: #f8f9fa;
    padding: 20px;
    box-sizing: border-box;
}

/* Top Navigation Bar */
.custom-top-nav[b-k2m3gwcqfd] {
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

    .custom-top-nav .logo[b-k2m3gwcqfd] {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        text-decoration: none;
    }

    .custom-top-nav .nav-links a[b-k2m3gwcqfd] {
        margin-left: 20px;
        color: #2c3e50;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
    }

        .custom-top-nav .nav-links a:hover[b-k2m3gwcqfd] {
            text-decoration: underline;
            color: #007bff;
        }

/* Hamburger Icon for Sidebar (only for mobile) */
.sidebar-hamburger[b-k2m3gwcqfd] {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* Hidden by default */
}

@media (max-width: 768px) {
    /* Mobile-specific styles */
    .sidebar-hamburger[b-k2m3gwcqfd] {
        display: block; /* Show hamburger icon */
    }

    .custom-sidebar[b-k2m3gwcqfd] {
        transform: translateX(-100%); /* Hide sidebar by default */
    }

    .sidebar-toggle:checked ~ .custom-sidebar[b-k2m3gwcqfd] {
        transform: translateX(0); /* Show sidebar when toggled */
    }

    .custom-main[b-k2m3gwcqfd] {
        margin-left: 0; /* Remove sidebar space */
    }

    .sidebar-close[b-k2m3gwcqfd] {
        display: block; /* Show close button in mobile mode */
    }
}

/* Sidebar Toggle Checkbox */
.sidebar-toggle[b-k2m3gwcqfd] {
    display: none; /* Hide checkbox */
}

/* Content Area */
.custom-content[b-k2m3gwcqfd] {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
.custom-footer[b-k2m3gwcqfd] {
    background-color: #2c3e50;
    color: #f8f9fa; /* Lighter footer text */
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
}

/* Buttons */
button[b-k2m3gwcqfd] {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    button:hover[b-k2m3gwcqfd] {
        background-color: #0056b3;
        transform: scale(1.05);
    }
