/* User Sidebar Styles */
.user-layout {
    display: flex;
    min-height: calc(100vh - 200px);
}

.user-sidebar {
    width: 250px;
    background-color: #fff;
    border-right: 2px dashed #999;
    padding: 20px 0;
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.user-sidebar .logo-section {
    padding: 20px;
    border-bottom: 2px dashed #999;
    margin-bottom: 20px;
}

.user-sidebar .logo-section .logo {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #28a745;
    padding: 15px;
    background-color: #f0f0f0;
}

.user-sidebar .nav-section {
    padding: 0 15px;
}

.user-sidebar .nav-section h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding: 0 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.user-sidebar .nav-item {
    display: block;
    padding: 12px 15px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.user-sidebar .nav-item:hover {
    background-color: #e9e9e9;
    transform: translateX(5px);
}

.user-sidebar .nav-item.active {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.user-main-content {
    flex: 1;
    padding: 20px 30px;
}

.user-header {
    background-color: #fff;
    border: 2px dashed #999;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.user-header .page-title {
    font-size: 28px;
    font-weight: bold;
    border: none;
    background: none;
    padding: 0;
}

.user-header .header-actions {
    display: flex;
    gap: 10px;
}

