body {
      background: #f5f1e6;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }

    .navbar {
      background: #1e1e1e;
      padding: 15px 20px;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .navbar a:hover {
      color: #00c9a7;
    }

    .navbar a.disabled {
      opacity: 0.4;
      pointer-events: none;
      filter: blur(1px);
    }

    .container {
      background: #fffaf0;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 900px;
      margin: 50px auto;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .video-frame {
      width: 100%;
      height: 500px;
      background: #2a2a2a;
      border-radius: 15px;
      margin: 20px auto;
      color: white;
      font-size: 18px;
      overflow: hidden;
      position: relative;
    }

    .video-frame iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 15px;
    }

    .contador {
      font-size: 32px;
      margin-top: 20px;
      font-weight: bold;
      color: #667eea;
    }

    .controls button {
      background-color: #d4af37;
      color: white;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin: 5px;
      transition: 0.3s;
    }

    .controls button:hover {
      background-color: #b08c2b;
    }

    .controls button:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .end-call {
      background-color: red;
    }

    .info-panel {
      margin-top: 20px;
      background: #fff4cc;
      padding: 15px;
      border-radius: 10px;
      font-size: 15px;
    }

    .info-panel span {
      font-weight: bold;
    }

    #bloqueEspera {
      text-align: center;
      padding: 40px;
      display: block;
    }

    #mensajeInicio {
      display: none;
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #333;
      color: white;
      padding: 15px 25px;
      border-radius: 10px;
      font-size: 18px;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 999;
    }

    #toast {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      padding: 15px 25px;
      border-radius: 10px;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 9999;
    }

    .report-btn {
      background-color: #dc3545;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.2s;
      margin: 5px;
    }

    .report-btn:hover {
      background-color: #c82333;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: white;
      border-radius: 12px;
      padding: 24px;
      max-width: 500px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .modal-title {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin: 0;
    }

    .close-btn {
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #666;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      padding: 12px;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      outline: none;
      font-family: inherit;
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .char-count {
      display: block;
      font-size: 12px;
      color: #666;
      text-align: right;
      margin-top: 4px;
    }

    .message {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .message.success {
      background-color: #d4edda;
      color: #155724;
      border-color: #c3e6cb;
    }

    .message.error {
      background-color: #f8d7da;
      color: #721c24;
      border-color: #f5c6cb;
    }

    .button-group {
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      margin-top: 24px;
    }

    .btn {
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .btn-cancel {
      background-color: #6c757d;
      color: white;
    }

    .btn-submit {
      background-color: #dc3545;
      color: white;
    }