/* Style Manager Specific Styles */

.style-manager-content {
    padding: 16px;
    background: var(--cde-bg-medium);
}

.style-section h3 {
    font-size: 12px;
    margin-bottom: 12px;
    color: black;
    border-bottom: 1px solid var(--cde-shadow-dark);
    padding-bottom: 4px;
}

.background-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 80px);
    gap: 16px;
    justify-content: center;
}

.bg-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    border: 1px solid transparent;
}

.bg-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--cde-highlight);
}

.bg-option.active {
    background-color: var(--cde-select-bg);
    color: white;
}

.bg-preview {
    width: 60px;
    height: 45px;
    border: var(--cde-border-width) solid;
    border-color: var(--cde-shadow-dark) var(--cde-highlight) var(--cde-highlight) var(--cde-shadow-dark);
    background-size: cover;
    background-position: center;
}

.bg-label {
    font-size: 11px;
    text-align: center;
}
