﻿/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

    .sidebar.show {
        left: 0;
    }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

    .sidebar-overlay.show {
        display: block;
    }

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #34495e;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    color: #27ae60;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

    .sidebar-logo i {
        font-size: 24px;
        margin-right: 10px;
    }

.sidebar-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-menu li {
        border-bottom: 1px solid #34495e;
    }

    .sidebar-menu a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: #bdc3c7;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
    }

        .sidebar-menu a:hover {
            background: #34495e;
            color: #fff;
        }

        .sidebar-menu a.active {
            background: #27ae60;
            color: #fff;
        }

    .sidebar-menu i {
        width: 20px;
        margin-right: 15px;
        font-size: 16px;
    }

/* Header Styles */
.page-header {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 66px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container-fluid.header {
    position: fixed;
    z-index: 10;
    background-color: #fff;
    padding: 10px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #495057;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

    .menu-toggle:hover {
        background: #f8f9fa;
    }

.page-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.breadcrumb-custom {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumb-custom .breadcrumb-item {
        color: #6c757d;
    }

        .breadcrumb-custom .breadcrumb-item.active {
            color: #495057;
            font-weight: 500;
        }
