.teklif-al-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.teklif-al-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.teklif-al-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.teklif-al-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.teklif-al-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.teklif-al-modal-header .title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.teklif-al-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.teklif-al-modal-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.teklif-al-modal-body {
    padding: 30px;
}

@media (max-width: 768px) {
    .teklif-al-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .teklif-al-modal-header {
        padding: 20px;
    }
    
    .teklif-al-modal-body {
        padding: 20px;
    }
}

