/* Feedback Modal */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
    z-index: 10001;
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.feedback-modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: feedbackModalSlideIn 0.4s ease-out;
}

@keyframes feedbackModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feedback-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.feedback-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feedback-modal h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.close-feedback-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.close-feedback-modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.feedback-modal .modal-body {
    padding: 30px 20px;
}

.feedback-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.feedback-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease;
    margin-bottom: 15px;
    min-height: 150px;
}

.feedback-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.feedback-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.char-count {
    font-size: 12px;
    color: #666;
}

.send-feedback-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.send-feedback-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.send-feedback-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .feedback-modal {
        padding-top: 20px;
    }
    
    .feedback-modal .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .feedback-modal .modal-header {
        padding: 25px 15px 15px;
    }
    
    .feedback-icon {
        font-size: 40px;
    }
    
    .feedback-modal h3 {
        font-size: 20px;
    }
    
    .feedback-modal .modal-body {
        padding: 25px 15px;
    }
    
    .feedback-input {
        font-size: 14px;
        min-height: 120px;
    }
}

