.duplicate-alert-modal {
    position: fixed;
    inset: 0;
    z-index: 1201;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duplicate-alert-modal.hidden {
    display: none;
}

.duplicate-alert-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.duplicate-alert-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    margin: 0 1rem;
}

.duplicate-alert-content {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 1.25rem;
    animation: duplicate-alert-fade-in 0.2s ease-out;
}

@keyframes duplicate-alert-fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.duplicate-alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.duplicate-alert-icon {
    color: #eab308;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.duplicate-alert-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.duplicate-alert-message {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
    white-space: pre-line;
}

.duplicate-alert-actions {
    display: flex;
    justify-content: flex-end;
}

.duplicate-alert-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.duplicate-alert-button:hover {
    background-color: #1d4ed8;
}

