:root {
    --vf-dark: #202020;
    --vf-gray-text: #5f6368;
    --vf-border: #dadce0;
    --vf-bg: #ffffff;
}

.vf-feedback-wrapper {
    max-width: 1164px;
    margin: 0 auto 120px;
    padding: 20px;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
    direction: rtl;
}

.vf-main-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--vf-dark);
}

.vf-sub-title {
    font-size: 20px;
    color: var(--vf-gray-text);
    margin-bottom: 24px;
    font-weight: 400;
}

.vf-emoji-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.vf-emoji-item {
    background: none;
    border: none;
    cursor: pointer;
    color: #70757a;
    transition: color 0.2s, transform 0.1s;
}

.vf-emoji-item svg {
    width: 40px;
    height: 40px;
}

.vf-emoji-item:hover, .vf-emoji-item.vf-active {
    color: var(--vf-dark);
}

.vf-emoji-item:active {
    transform: scale(0.95);
}


/* Update SVG to inherit color */
.vf-emoji-item svg path {
    fill: currentColor;
    transition: fill 0.25s ease;
}

/* Hover state */
.vf-emoji-item:hover {
    color: #1f1f1f; /* Darker on hover */
    transform: translateY(-2px);
}

/* Active state (The one you requested) */
.vf-emoji-item.vf-active {
    color: #000000; /* Deep black for selection */
    transform: scale(1.15); /* Slight pop out */
}

/* Optional: Add a subtle glow or background circle if desired */
.vf-emoji-item.vf-active svg {
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}

.vf-form-group {
    text-align: right;
    margin-bottom: 12px;
}

.vf-input-label {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--vf-dark);
    font-weight: 400;
}

.vf-text-area {
    width: 100%;
    height: 280px;
    border: 1px solid var(--vf-border);
    border-radius: 20px; /* Matching the large radius in the image */
    padding: 20px;
    font-size: 16px;
    resize: vertical;
    box-sizing: border-box;
    outline: none;
    resize: none;
}

.vf-text-area:focus {
    border-color: var(--vf-dark);
}

.vf-footer {
    display: flex;
    justify-content: center;
    flex-flow: column;
    display: j;
}

.vf-btn-primary {
    background-color: var(--vf-dark);
    color: white;
    border: none;
    padding: 9px 120px;
    border-radius: 100px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.2s;
    max-width: 295px;
}

.vf-btn-primary:hover {
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .vf-main-title {font-size: 22px;}
    .vf-sub-title { font-size: 16px; }
    .vf-emoji-item svg { width: 44px; height: 44px; }
    .vf-text-area { height: 200px; border-radius: 16px; }
    .vf-btn-primary {width: 100%;margin: 0 auto;}
}

/* Inline Message Styling */
#vf-inline-message {
    font-size: 14px;
    min-height: 20px;
    transition: all 0.3s ease;
    text-align: start;
}

/* Success State Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vf-feedback-wrapper {
    transition: opacity 0.3s ease;
}

/* Button Loading State */
.vf-btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}