/* Toplu İsim Ekleme Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg, #ffffff);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    background: var(--bg-secondary, #f5f5f5);
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-primary, #333);
    font-weight: 600;
}

.close {
    color: var(--text-secondary, #666);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--accent-color, #2E7D32);
    background-color: var(--bg-primary, #f0f0f0);
}

.modal-body {
    padding: 25px;
}

.modal-body p {
    margin-bottom: 15px;
    color: var(--text-secondary, #666);
    font-size: 14px;
    line-height: 1.5;
}

#bulk-names-input {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 2px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    background-color: var(--bg-secondary, #f9f9f9);
    color: var(--text-primary, #333);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

#bulk-names-input:focus {
    outline: none;
    border-color: var(--accent-color, #2E7D32);
}

.separator-options {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.separator-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary, #333);
    padding: 5px 0;
}

.separator-options input[type="radio"] {
    margin-right: 8px;
    accent-color: var(--accent-color, #2E7D32);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid var(--border-color, #e0e0e0);
    background: var(--bg-secondary, #f5f5f5);
}

.btn-cancel, .btn-add-bulk {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.btn-cancel {
    background-color: var(--bg-primary, #ffffff);
    color: var(--text-secondary, #666);
    border: 1px solid var(--border-color, #e0e0e0);
}

.btn-cancel:hover {
    background-color: var(--border-color, #e0e0e0);
}

.btn-add-bulk {
    background-color: var(--accent-color, #2E7D32);
    color: white;
}

.btn-add-bulk:hover {
    background-color: var(--accent-hover, #1B5E20);
}

/* Toplu ekleme butonu stili */
.btn-bulk-add {
    padding: 10px 12px;
    background-color: #6C63FF;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-width: 40px;
    height: 40px;
}

.btn-bulk-add:hover {
    background-color: #5753D9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 99, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 15px 20px;
    }
    
    #bulk-names-input {
        min-height: 150px;
    }
    
    .separator-options {
        gap: 5px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-cancel, .btn-add-bulk {
        width: 100%;
    }
} 