/* ... existing content ... */

/* --- Preset Controls --- */
.preset-control-group {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.preset-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #495057;
}

.preset-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.active-preset-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8f0fe;
    color: #0d6efd;
    padding: 6px 10px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #cff4fc;
}

.active-preset-badge button {
    background: none;
    border: none;
    color: #0d6efd;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 8px;
    opacity: 0.7;
}

.active-preset-badge button:hover {
    opacity: 1;
    color: #0a58ca;
}
