/* Custom Modal Styles */
#feedback-popup {
    font-family: 'Inter', sans-serif;
    /* Use theme font if available */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.popup-content {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    opacity: 0;
    animation: popupEnter 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    overflow: hidden;
}

@keyframes popupEnter {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
    /* Removed shadow for icon */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    /* Light background for icon circle */
    animation: iconPulse 2s infinite ease-in-out;
}

.popup-icon i {
    font-size: 40px;
    /* Large Icon */
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 109, 41, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(232, 109, 41, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(232, 109, 41, 0);
    }
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.popup-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.popup-btn {
    background: #e86d29;
    /* Theme primary color */
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 109, 41, 0.3);
    outline: none;
}

.popup-btn:hover {
    background: #d65c18;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 109, 41, 0.4);
}

.popup-btn:active {
    transform: translateY(1px);
}