/* ===== FORMULÁRIO DO CORRETOR ===== */

#corretor-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  #corretor-form input,
  #corretor-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  #corretor-form button {
    background: #000000;
    color: white;
    padding: 12px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  #corretor-form button:hover {
    background: #AA1003;
  }
  
  /* Blocos e layout */
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  
  .label-row label {
    font-weight: bold;
    font-size: 15px;
  }
  
  .error-msg {
    color: red;
    font-size: 12px;
    margin-left: 10px;
  }
  
  input.erro,
  textarea.erro {
    border-color: red !important;
  }
  
  
  /* ===== TABELA DE LINKS GERADOS ===== */
  
  table.corretor-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 16px;
  }
  
  table.corretor-table th {
    background: #000 !important;
    color: white !important;
    padding: 12px;
    text-align: left;
    font-weight: bold;
  }
  
  table.corretor-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  
  table.corretor-table tr:nth-child(even) {
    background: #f8f8f8;
  }
  
  table.corretor-table tr:nth-child(odd) {
    background: #ffffff;
  }
  
  
  /* ===== BOTÕES PADRÃO DA TABELA ===== */
  
  .btn-copy,
  .btn-whatsapp,
  .btn-pdf,
  .btn-excel,
  .btn-html {
    padding: 10px 14px;
    margin: 5px 5px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
  }
  
  /* Botão de copiar */
  .btn-copy {
    background: #0073aa;
    color: white;
  }
  .btn-copy:hover {
    background: #005f8a;
  }
  
  /* Botão de WhatsApp */
  .btn-whatsapp {
    background: #25d366;
    color: white;
  }
  .btn-whatsapp:hover {
    background: #1da851;
  }
  
  
  /* ===== BOTÕES DE EXPORTAÇÃO - UNIFICADOS ===== */
  
  #corretor-urls .btn-pdf,
  #corretor-urls .btn-excel,
  #corretor-urls .btn-html {
    background: transparent !important;
    color: #aa0033 !important;
    border: 1px solid #aa0033 !important;
    padding: 10px 14px !important;
    margin: 5px 5px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
    font-weight: normal !important;
    box-shadow: none !important;
  }
  
  #corretor-urls .btn-pdf:hover,
  #corretor-urls .btn-excel:hover,
  #corretor-urls .btn-html:hover {
    background: #aa0033 !important;
    color: white !important;
  }
  