.modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #fafbfc 0%, white 100%);
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.modal-header .close {
    width: 34px;
    height: 34px;
    padding: 0;
    background: #f0f3f7;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    opacity: 1;
    font-size: 20px;
    line-height: 1;
}

.modal-header .close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f3f7;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: linear-gradient(180deg, white 0%, #fafbfc 100%);
}
