/* =========================================
   # CATALOG SIDEBAR COMPONENT
   ========================================= */
.modern-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    padding: 20px;
    margin-bottom: 20px;
}
.modern-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: block;
}
.modern-sidebar-btn {
    width: 100%;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
    text-align: center;
    display: block;
    text-decoration: none;
}
.modern-sidebar-btn:hover {
    background: #0284c7;
    box-shadow: 0 6px 8px -1px rgba(14, 165, 233, 0.3);
    transform: translateY(-1px);
    color: #ffffff;
}
.modern-sidebar-btn.secondary {
    background: #f1f5f9;
    color: #475569;
    box-shadow: none;
    margin-bottom: 20px;
}
.modern-sidebar-btn.secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.modern-sidebar-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s;
}
.modern-sidebar-input:focus {
    border-color: #0ea5e9;
}
.modern-sidebar-label {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
}
.modern-sidebar-label input[type="checkbox"],
.modern-sidebar-label input[type="radio"] {
    accent-color: #0ea5e9;
    width: 16px;
    height: 16px;
    cursor: pointer;
}
