/* Cores e fontes */
:root {
    --primary-color: #044c8d;
    --primary-color-dark: #005a92;
    --secondary-color: #ffffff;
    --secondary-color-light: #f5f5f5;
    --accent-color: #f5f5f5;
    --error-color: #ff3d57;
    --success-color: #00b894;
    --warning-color: #f1c40f;
    --info-color: #3498db;
    --purple: #8e44ad;
    --red: #e63241;
    --orange: #f3711a;
    --blue: #2c83cf;
    --lightblue: #add8e6;
    --green: #0ccf2d;
    --yellow: #f3d20a;
    --color-grey: #cccccc;
    --color-green: #4296f4;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    --box-shadow-minimal: 0 0px 1px 1px #45454517;

    --redStatus: #ff8888;
    --greenStatus: #55dc99;
    --blueStatus: #a1b6ff;
    --yellowStatus: #ffbe62;
  
    --button-width: 3.5em;
    --button-height: 2em;
    --toggle-diameter: 1.5em;
    --button-toggle-offset: calc((var(--button-height) - var(--toggle-diameter)) / 2);
    --toggle-shadow-offset: 10px;
    --toggle-wider: 3em;
  }
  
  @font-face {
    font-family: 'Antenna';
    src: url('./fonts/Antenna-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Antenna';
    src: url('./fonts/Antenna-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Antenna';
    src: url('./fonts/Antenna-Light.otf') format('truetype');
    font-weight: lighter;
    font-style: normal;
  }
  
  

  /* Estilos Gerais */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    outline: none;
  }
  
  .header-title h1{
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 28px;
      color: rgba(30, 41, 59, 1);
  }

  .header-title p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(100, 116, 139, 1);
  }

  html {
    overflow: hidden auto;
  }
  
  html::-webkit-scrollbar {
    width: 8px;
  }
  
  html::-webkit-scrollbar-track {
    background: #ddd;
  }
  
  html::-webkit-scrollbar-thumb {
    background: #666;
  }
  
body {
    background-color: #F8FAFC;
  }

  .page-wrapper {
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
  }

  .ui-select {
    position: relative;
    display: inline-flex;
    width: 100%;
  }

  .ui-select__field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 42px;
    padding: 10px 42px 10px 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #1e293b;
    font-size: 14px;
    line-height: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .ui-select__field option {
    background: #ffffff;
    color: #1e293b;
    font-size: 14px;
    padding: 10px 12px;
  }

  .ui-select__field option:checked {
    background: #2c83cf;
    color: #ffffff;
  }

  .ui-select__field option:disabled {
    color: #94a3b8;
  }

  .ui-select__field:hover {
    border-color: #94a3b8;
  }

  .ui-select__field:focus {
    border-color: #2c83cf;
    box-shadow: 0 0 0 3px rgba(44, 131, 207, 0.15);
  }

  .ui-select.is-disabled .ui-select__field,
  .ui-select__field:disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
  }

  .ui-select__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: translateY(-60%) rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
    pointer-events: none;
  }

  .ui-select:hover .ui-select__icon {
    border-color: #334155;
  }

  .ui-select:focus-within .ui-select__icon {
    transform: translateY(-40%) rotate(-135deg);
    border-color: #2c83cf;
  }

  .ui-select.is-multiple .ui-select__icon {
    display: none;
  }

  .ui-select__clear {
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid #94a3b8;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .ui-select__clear i {
    font-size: 13px;
    line-height: 1;
  }

  .ui-select__clear:hover {
    border-color: #dc2626;
    background: #fee2e2;
    color: #dc2626;
  }

  .ui-select__clear[hidden] {
    display: none !important;
  }
  
  
  
  
  
  
  
 
  

  
 
