/* Feedback System CSS */
/* Floating feedback button and modal styles */

/* Floating Feedback Button */
.feedback-float-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.feedback-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.feedback-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.feedback-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Feedback Modal */
.feedback-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    min-width: 400px;
    max-width: 90vw;
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.feedback-modal-header h2 {
    margin: 0;
    color: #1e3c72;
    font-family: 'Montserrat', Arial, sans-serif;
}

.feedback-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.feedback-modal-close:hover {
    background-color: #f0f0f0;
}

.feedback-modal-body {
    padding: 0 24px 24px;
}

.feedback-modal-body p {
    color: #333;
    margin-bottom: 16px;
}

.feedback-modal-body label {
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.feedback-modal-body textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.feedback-modal-body textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.feedback-btn {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.feedback-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .feedback-modal {
        min-width: 300px;
        margin: 20px;
    }
    
    .feedback-float-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 14px;
        font-size: 13px;
    }
}
