/* ======== GENERAL ======== */
  
  .dashboard-body {
    max-width: 1100px;
    margin: auto;
  }
  
  /* ======== HEADER / DESCRIPCIÓN ======== */
  .box-description {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .box-description i.pse-icon {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/9/9a/PSE_logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .box-description h1 {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
  }
  
  .box-description p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    max-width: 700px;
  }
  
  /* ======== TABS ======== */
  .tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  
  .tabs-container {
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    background: #666;
    color: #fff;
    border: none;
    transition: background 0.3s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  @media (min-width: 1024px) {
    .tabs-container {
        margin: 30px 10px 0 0;
        padding: 10px 20px; 
    }
  }
  
  .tabs-container.active {
    background: #0074e4;
  }
  
  .tabs-container:not(.active):hover {
    background: #555;
  }
  
  /* ======== FORM CONTAINER ======== */
  .border-group {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    margin-top: 0;
  }
  
  .container-fluid {
    width: 100%;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .col-md-6 {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 6px;
  }
  
  label.required::after {
    content: " *";
    color: red;
  }
  
  select, input {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
  }
  
  select:focus, input:focus {
    border-color: #0074e4;
    outline: none;
  }
  
  /* ======== RESPONSIVE ======== */
  @media (max-width: 768px) {
    .box-description {
      /* flex-direction: column; */
      align-items: flex-start;
      text-align: left;
    }
  
    .tabs-wrapper {
      flex-direction: column;
    }
  
    .tabs-container {
      width: 100%;
    }
  }

  