

          .webinar-rating {
            font-family: var(--font-family-1);
            background: #f5f5f7;
            /* min-height: 100vh; */
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 9px 16px 48px;
            border-radius: 20px;
          }

        .webinar-rating  .wrap {
             width: 100%; 
             max-width: 420px; 
          }

         .webinar-rating .page-hint {
            font-size: 15px;
            font-weight: 600;
            color: #e95723;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 14px;
          }

          /* webinar info */
         .webinar-rating .webinar-info {
            background: #fff;
            border-radius: 14px;
            padding: 12px 14px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.06);
          }
         .webinar-rating .webinar-info.hidden { display: none; }
         .webinar-rating .webinar-name {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
          }
         .webinar-rating .source-toggle { display: flex; gap: 4px; flex-shrink: 0; }
         .webinar-rating .source-btn {
            padding: 5px 10px;
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            background: transparent;
            color: #9ca3af;
            cursor: pointer;
            transition: all 0.15s;
            white-space: nowrap;
          }
         .webinar-rating .source-btn.active {
            background: #f3f0ff;
            border-color: #7c3aed;
            color: #7c3aed;
          }

          /* card */
         .webinar-rating .card {
            background: #fff;
            border-radius: 18px;
            padding: 18px 16px 14px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
            margin-bottom: 12px;
          }

          .webinar-rating .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
          }

          .webinar-rating .card-left {
            display: flex;
            align-items: center;
            gap: 10px;
          }

         .webinar-rating .card-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            background: #f0f0f5;
            color: #555;
          }
         .webinar-rating .card-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
          }
         .webinar-rating .card-icon svg {
            width: 20px;
            height: 20px;
          }
         .webinar-rating .card-icon.avatar-icon {
            background: #e0e7ff;
            color: #4338ca;
            font-size: 13px;
            font-weight: 700;
          }

         .webinar-rating .card-titles { display: flex; flex-direction: column; gap: 2px; }
         .webinar-rating .card-title {font-size: 15px;color: #111827;line-height: 1.2;}
         .webinar-rating .card-subtitle { font-size: 12px; color: #9ca3af; }

         .webinar-rating .selected-big {
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.5px;
            min-width: 32px;
            text-align: right;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
          }
        .webinar-rating  .selected-big.show {
            opacity: 1;
            transform: scale(1);
          }

          /* stars */
         .webinar-rating .stars-row {
            display: flex;
            gap: 2px;
          }

         .webinar-rating .star-btn {
            flex: 1;
            aspect-ratio: 1;
            min-width: 0;
            background: none;
            border: none;
            padding: 4px 2px;
            cursor: pointer;
            color: #d1d5db;
            transition: transform 0.12s ease, color 0.12s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            display: flex;
            align-items: center;
            justify-content: center;
          }
         .webinar-rating .star-btn svg {
            width: 100%;
            height: 100%;
            max-width: 28px;
            max-height: 28px;
            transition: fill 0.12s ease, color 0.12s ease;
          }
          .webinar-rating .star-btn:active { transform: scale(0.85); }
         .webinar-rating .star-btn.active { transform: scale(1.05); }

         .webinar-rating .row-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
            font-size: 11px;
            color: #9ca3af;
          }

          /* comment */
          .webinar-rating .feedback-block {
            background: #fff;
            border-radius: 14px;
            padding: 14px 14px 10px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.06);
            margin-bottom: 0;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
          }
         .webinar-rating .feedback-block.show {
            max-height: 200px;
            opacity: 1;
            margin-top: 0;
          }
         .webinar-rating .feedback-label {
            display: block;
            font-size: 13px;
            /* font-weight: 600; */
            color: #374151;
            margin-bottom: 8px;
          }
         .webinar-rating .feedback-optional { font-weight: 400; color: #9ca3af; font-size: 12px; }
         .webinar-rating .feedback-textarea {
            width: 100%;
            border: 1.5px solid #e5e7eb;
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 14px;
            font-family: inherit;
            color: #111827;
            background: #f9fafb;
            resize: none;
            outline: none;
            transition: border-color 0.15s;
          }
         .webinar-rating .feedback-textarea:focus { border-color: #f59e0b; background: #fff; }
         .webinar-rating .feedback-textarea::placeholder { color: #9ca3af; }
         .webinar-rating .feedback-count {
            text-align: right;
            font-size: 11px;
            color: #9ca3af;
            margin-top: 4px;
          }

          /* submit */
         .webinar-rating .submit-btn {
            width: 100%;
            margin-top: 20px;
            padding: 15px;
            border: none;
            border-radius: 14px;
            background: #e5e7eb;
            color: #9ca3af;
            font-size: 15px;
            font-weight: 600;
            cursor: not-allowed;
            transition: all 0.25s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
          }
         .webinar-rating .submit-btn.ready {
            background: #111827;
            color: #fff;
            cursor: pointer;
          }
         .webinar-rating .submit-btn.ready:active { transform: scale(0.98); background: #374151; }

         .webinar-rating .btn-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
          }

		.webinar-rating .page-hint-admin {
			font-size: 15px;
			display: inline-block;
			margin: 0 auto;
		}

          @keyframes spin { to { transform: rotate(360deg); } }
         .webinar-rating .spinner {
            width: 18px;
            height: 18px;
            animation: spin 0.8s linear infinite;
          }

          /* success state */
         .webinar-rating .success-overlay {
            display: none;
            text-align: center;
            padding: 32px 16px;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.07);
          }
         .webinar-rating .success-overlay.show { display: block; }
         .webinar-rating .success-icon { font-size: 48px; margin-bottom: 12px; }
         .webinar-rating .success-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 6px; }
         .webinar-rating .success-sub { font-size: 14px; color: #9ca3af; }

         .webinar-rating .cards-wrap { display: flex; flex-direction: column; gap: 12px; }
