.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 320px;
    max-width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    box-sizing: border-box;
}

.modal-content h3 {
    margin: 0 0 1.5rem;
    font-size: 1.3rem;
    color: #481010;
}

.modal-content label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
}

.modal-content select {
    width: 100%;
    height: 42px;
    padding: 0 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 1rem;
    background: #fff;
    color: #333;
    cursor: pointer;
}

.modal-content select:focus {
    border-color: #CF922E;
}

.save-settings {
    width: 100%;
    height: 44px;
    background: #481010;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.save-settings:hover {
    background: #5e1515;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}
