/* Hide Feedback Form by default */
.feedback-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* ✅ Blurred background effect */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show Feedback Form when active */
.feedback-container.active {
    visibility: visible;
    opacity: 1;
}

/* Feedback Popup */
.feedback-popup {
    background: rgba(30, 30, 30, 0.95);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    width: 500px; /* ✅ Adjusted width */
    min-height: 300px; /* ✅ Adjusted height */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Feedback Header */
.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Close Button */
.feedback-header .close-button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feedback-header .close-button:hover {
    color: #01a5bf;
}

/* Feedback Content */
.feedback-content {
    margin-bottom: 15px;
}

/* Textarea */
#feedBackTextAreaId {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border-radius: 5px;
    background: #222;
    color: white;
    border: 1px solid #444;
    font-size: 16px;
    resize: none;
    outline: none;
    font-family: 'Poppins', sans-serif
}

/* Feedback Info */
.feedback-info p {
    font-size: 14px;
    font-weight: bold;
    color: #ccc;
    text-align: justify;
}

/* Privacy Policy & Terms Links */
.feedback-info p a {
    color: #7aee00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feedback-info p a:hover {
    text-decoration: underline;
    color: #01a5bf;
}

/* Submit Button */
.feedback-actions {
    text-align: right;
    margin-top: 15px;
}

.submit-button {
    background: #444;
    border-radius: 1px;
    border: 1px solid #666;
    color: white;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.1);
    background-color: #01a5bf;
}