.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.import-modal {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-icon {
    text-align: center;
    margin-bottom: 24px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle.warning {
    background: #FFF4E5;
    color: #FF9800;
}

.icon-circle.error {
    background: #FFEBEE;
    color: #F44336;
}

.icon-circle svg {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 16px 0;
    color: #333;
}

.modal-message {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.modal-actions .btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.modal-actions .btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.modal-actions .btn-secondary:hover {
    background: #e0e0e0;
}

.modal-actions .btn-primary {
    background: #2196F3;
    color: white;
}

.modal-actions .btn-primary:hover {
    background: #1976D2;
}

@media (max-width: 768px) {
    .import-modal {
        padding: 24px;
        max-width: 90%;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}