/* Feedback Widget Styles */
.pft-feedback-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pft-feedback-container::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
}

.pft-feedback-container::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
}

.pft-feedback-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.pft-feedback-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.pft-feedback-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.pft-feedback-btn {
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pft-feedback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

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

.pft-btn-yes {
    background: linear-gradient(to right, #2ecc71, #1abc9c);
    color: white;
}

.pft-btn-no {
    background: linear-gradient(to right, #e74c3c, #e67e22);
    color: white;
}

.pft-icon {
    font-size: 1.4rem;
}

.pft-thank-you {
    color: #27ae60;
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.2rem;
    display: none;
}

.pft-pulse {
    animation: pft-pulse 1.5s infinite;
}

@keyframes pft-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}