/* Theme Customization Panel */
.scmguard-customize-panel {
    position: fixed;
    right: -300px;
    top: 100px;
    width: 300px;
    height: calc(100vh - 100px);
    background: white;
    border-left: 1px solid #ddd;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.scmguard-customize-panel.active {
    right: 0;
}

.scmguard-customize-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scmguard-customize-header h3 {
    margin: 0;
    font-size: 18px;
}

.scmguard-customize-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.scmguard-customize-content {
    padding: 20px;
}

.customize-section {
    margin-bottom: 20px;
}

.customize-section h4 {
    margin: 0 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.customize-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 5px 0;
}

.color-picker {
    height: 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.layout-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.layout-option {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.layout-option:hover {
    border-color: #0073aa;
}

.layout-option.selected {
    border-color: #0073aa;
    background: #f8f9fa;
}

.layout-option i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.scmguard-customize-toggle {
    position: fixed;
    right: 0;
    top: 150px;
    width: 40px;
    height: 40px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.scmguard-customize-toggle:hover {
    transform: translateX(-5px);
}

/* Theme Variations */
.scmguard-client-dashboard.compact {
    max-width: 800px;
}

.scmguard-client-dashboard.full-width {
    max-width: 100%;
    margin: 0;
}

.scmguard-client-dashboard.boxed {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}