/* Workshop Manager Styles */
.workshop-manager-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
/* Sidebar Styles */
.workshop-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.workshop-filter-btn {
    width: 100%;
    padding: 12px 20px;
    background: #4169E1;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.workshop-filter-btn:hover {
    background: #3154c4;
}

.workshop-category-section {
    margin-bottom: 30px;
}

.workshop-category-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.workshop-category-section label {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.workshop-category-section input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Main Content Styles */
.workshop-main-content {
    flex: 1;
}

.workshop-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

#workshop-location-filter {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

.workshop-header span {
    color: #2a2a2a;
    font-size: 14px;
}

.workshop-type-filters {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.workshop-type-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workshop-type-btn[data-type="in-person"] {
    background: #4169E1;
    color: white;
}

.workshop-type-btn[data-type="virtual"] {
    background: #52C41A;
    color: white;
}

.workshop-type-btn:not(.active) {
    opacity: 0.5;
}

/* Workshop List Styles */
.workshop-list {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.workshop-item {
    display: grid;
    grid-template-columns: 150px 1fr 200px 100px;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.workshop-item:hover {
    background: #fafafa;
}

.workshop-item:last-child {
    border-bottom: none;
}

.workshop-date {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workshop-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.workshop-badge.in-person {
    background: #4169E1;
    color: white;
}

.workshop-badge.virtual {
    background: #52C41A;
    color: white;
}

.workshop-title {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

.workshop-location {
    font-size: 15px;
    color: #475569;
    font-weight: 600;
}

.workshop-more-info {
    color: #4169E1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    transition: color 0.3s ease;
}

.workshop-more-info:hover {
    color: #3154c4;
    text-decoration: underline;
}

/* Contact Box Styles */
.workshop-contact-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.workshop-contact-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.workshop-request-btn {
    background: #4169E1;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.workshop-request-btn:hover {
    background: #3154c4;
}

/* Responsive Design */
@media (max-width: 968px) {
    .workshop-manager-container {
        flex-direction: column;
    }
    
    .workshop-sidebar {
        width: 100%;
    }
    
    .workshop-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .workshop-more-info {
        text-align: left;
    }
    
    .workshop-type-filters {
        margin-left: 0;
        width: 100%;
    }
}

/* Mobile Phone Mockup Styles (Optional) */
.workshop-mobile-mockup {
    border: 3px solid #333;
    border-radius: 30px;
    padding: 20px;
    max-width: 375px;
    margin: 40px auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.workshop-mobile-mockup .workshop-item {
    grid-template-columns: 1fr;
    padding: 15px;
}

.workshop-mobile-mockup .workshop-date {
    margin-bottom: 5px;
}

.workshop-mobile-mockup .workshop-location {
    margin-bottom: 5px;
}