html,
body {
  height: 100%;
}

/* Modern Header Styles */
.modern-header {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: visible;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #dee2e6;
  z-index: 1000;
  max-width: 100%;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modern-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  opacity: 0.3;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  z-index: 1003;
  position: relative;
  cursor: pointer;
}

.brand-container:hover {
  opacity: 0.8;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Navigation */
.header-navigation {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.navbar-burger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.navbar-burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-start {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-item {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  z-index: 1002;
}

.navbar-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.navbar-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
}

.navbar-link:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.navbar-link::after {
  content: '▼';
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .navbar-link::after {
  transform: rotate(180deg);
}

.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 0.5rem 0;
}

.has-dropdown:hover .navbar-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown .navbar-item {
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  margin: 0;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-dropdown .navbar-item:last-child {
  border-bottom: none;
}

.navbar-dropdown .navbar-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.user-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
}

.user-info {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .modern-header {
    padding: 1rem 0;
  }

  .header-content {
    padding: 0 1rem;
  }

  .brand-container {
    gap: 1rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    font-size: 1.5rem;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .navbar-burger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 1rem;
    z-index: 1000;
  }

  .navbar-menu.is-active {
    display: flex;
  }

  .navbar-start {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .navbar-end {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .navbar-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(102, 126, 234, 0.05);
    margin-top: 0.5rem;
    border-radius: 8px;
  }

  .has-dropdown:hover .navbar-dropdown {
    display: block;
  }
}

/* remove spinner arrows from number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.middle_align {
  vertical-align: middle;
}

.left_align {
  text-align: left;
}

.right_align {
  text-align: right;
}

.center_align {
  text-align: center;
}

.flex {
  position: relative;
  justify-content: center;
  justify-items: center;
}

.logo {
  height: 72px;
  width: 60px;
  margin-top:-27px;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.center {
  margin: auto;
  max-width: 500px;
  padding: 5px;
  height: 100%;
  vertical-align: middle;
}


.main {
  height: 100%;
  width: 100%;
  display: table;
}

.wrapper {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

input.hidden {
  width: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
  outline: none;
  border: 0px;
}

.scroll {
  overflow-y: scroll;
  height: 415px;
}

.notification_padding {
  padding: 0px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.pdf-content {
  height: 75vh;
  width: 100%;
}

.full-width {
  width: 95%;
}

.datetimepicker-dummy-input {
  max-width: unset !important;
}

.datetimepicker-dummy-wrapper {
  border-radius: 4px;
}

.is-multiple option {
  min-height: 37.6px;
}

#selectMaterialCertif option[disabled],
#selectDiametroCertif option[disabled] {
  display: none;
}

#selectDiametroCertif {
  overflow-y: scroll;
}


.responsive-full-width {
  width: 80%;
}

@media screen and (max-width: 1000px) {
  .responsive-full-width {
    width: 100%;
    overflow: hidden;
    margin: 0 -150px 0 -150px;
  }
}

.actionsButtons {
  max-width: 220px;
}

/* navbar */

.nav-gc {
  margin-bottom: 2em !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.nav-gc a {
  padding: 4px;
}

.nav-gc-item-active a {
  background: #244b95;
  color: #fff !important;
  border-radius: 15px;
  min-width: 5em;
  text-align: center;
}

.nav-gc-item:hover a {
  background: #6a9dff;
  color: #fff !important;
  border-radius: 15px;
  min-width: 5em;
  text-align: center;
}

.filters-row {
  display: flex;
}

.filter-select {
  height: 100%;
}

.filter-select div {
  max-height: 43px;
}

.filter-select-selected {
  background-color: #5281d9;
  color: white;
}

@media screen and (max-width: 920px) {
  .mdc-input-custom {
    position: relative;
    width: 10rem !important;
    height: 2rem;
    margin: 23px 0px;
  }

  .filters-row {
    display: flex;
    flex-direction: column;
  }
}

.nav-gc-button-sm {
  width: 20px !important;
  height: 20px !important;
  font-size: 12px;
}

.nav-gc-button {
  min-width: 43px !important;
  min-height: 35px !important;
  height: 100% !important;
  padding: 0px 5px !important;
  border-radius: 10px !important;
  border-color: transparent;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, .12);
}

.nav-gc-button i {
  font-size: 18px !important;
  vertical-align: middle;
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.nav-gc-button:hover {
  border: 1.5px solid #a5a5a5;
  -webkit-box-shadow: 5px 5px 23px -12px rgba(0, 0, 0, 0.49);
  box-shadow: 5px 5px 23px -12px rgba(0, 0, 0, 0.49);
}

/* others */

.btn-disabled {
  opacity: .4;
  cursor: default !important;
  pointer-events: none;
}

/* pagination */

.btn-page-pagination {
  width: 30px !important;
  height: 30px !important;
  border-radius: 5px !important;
}

.btn-page-pagination-inactive {
  background-color: #91ade2 !important;
}

/* tables */

.mdc-data-table__table-container th {
  text-align: center !important;
}

.mdc-data-table__header-cell {
  background-color: #244b95;
  color: white;
  text-align: center;
  font-weight: normal;
  font-size: 0.875rem;
}

.mdc-data-table__content tr {
  cursor: pointer;
}

/* general */
.mini-button-parent:focus~.mini-button {
  margin-top: 6px !important;
  color: red !important;
}

.truncateText {
  max-width: 12em;
  min-width: 120px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.lengthBox {
  margin: 10px 75px;
}

.tableHeader {
  width: 154.858px;
  background-color: #244b95;
  color: white;
  font-weight: normal;
  font-size: 0.875rem;
}

.paginate_button {
  color: white !important;
  border-radius: 5px !important;
  padding: 2px 10px !important;
  margin-top: 5px;
}

.dataTables_paginate {
  margin-right: 10px;
}

.reportList_length {
  border-radius: 7px !important;
}

.small-column {
  max-width: 100% !important;
}

.medium-column {
  width: 11rem !important;
}

.dataTables_info {
  margin-left: 10px;
}

#reportList tbody tr {
  cursor: pointer;
}

.dataTables_empty {
  cursor: default !important;
}

div.dataTables_scrollHead th:first-child {
  border-top-left-radius: 10px;
}

div.dataTables_scrollHead th:last-child {
  border-top-right-radius: 10px;
}

.custom-table-design {
  border-radius: 10px;
  border: 1px #dfdfdf solid;
  width: 100%;
}

.spaceTopCard {
  margin-top: 7px;
}

#cardCell {
  padding-top: 8px;
  padding-left: 12px;
}

.labelDetailsOrder {
  font-size: 16px;
  font-weight: bold;
}

.spanDetailsOrder {
  font-size: 14px;
}

.textTitleCheckList {
  padding-left: 13px;
  padding-top: 7px;
  font-weight: bold;
}

#liRadioButtonCheckList {
  align-items: center;
}

#containerButtonReview {
  padding: 20px;
  text-align: right;
  padding-right: 0px;
}

#containerTextFielComment {
  padding-top: 13px;
}

#containerselCausal {
  padding-top: 13px;
}

#containerselInspector {
  padding-top: 13px;
}

#labelButtonReview {
  width: 100%;
  height: 41px;
}

#inspectionDateTextField {
  width: 100%;
  height: 41px;
}

#certificateTextField {
  width: 100%;
  height: 41px;
}

#inspectorTextField {
  width: 100%;
  height: 41px;
}

.labelDescription {
  width: 85%;
  font-size: 14px;
}

.labelInfo {
  text-align: right;
  margin-top: -23px;
  margin-right: 4em;
  font-weight: bold;
}

.pdfViewer {
  width: 100%;
  height: 100%;
}

.documentContent {
  height: 100%;
}

.contentCardPdf {
  height: 673px !important;
}

.contentScroll::-webkit-scrollbar {
  width: 1px;
  background: royalblue;
}

.colorButtons {
  background-color: #008000;
  color: #fff;
}

.colorButtonApproved {
  background-color: #008000;
  color: #fff !important;
}

.labelDetails {
  font-weight: bold;
  font-size: 14px;
}

.spanDetails {
  font-size: 15px;
}

.contentDetails {
  padding: 11px;
}

.columnLeftDetails {
  width: 20em !important;
}

.columnRightDetails {
  padding-left: 54%;
  width: 117em !important;
}

.full-width-notify {
  width: max-content;
}

.textAlignCenter {
  text-align: center;
}

#optionsCausals {
  width: 100%;
  height: 54px;
}

.dropdown-container {
  position: relative;
}

.list-menu {
  position: absolute;
  top: 60px;
}

.list-menu-open {
  display: block;
  opacity: 1;
}

.list-menu-close {
  display: none;
  opacity: 0;
}

.dropdown-icon-up {
  transform: rotate(180deg) translateY(-5px);
}

.contentSelect {
  width: 100%;
}

select#selCausal {
  padding-top: inherit;
}

select#inspectorId {
  padding-top: inherit;
}

.logoGasCaribe {
  margin-right: 75px;
}

.containerNav {
  margin-top: -33px;
}

.spancingTopComment {
  padding-top: 4px;
}

.containerListCheck {
  padding-top: 8px;
}

.bodyMessage {
  height: auto;
  padding-top: 13px
}

.textLoading {
  font-style: initial;
  font-weight: 500;
  font-family: revert;
  font-size: larger;
}

.borderModal {
  border-radius: 6px;
}

.delete_ButtonNotify {
  float: right;
  margin-left: 11px;
}

.is-error {
  border-color: #b00020;
}


.help-block {
  color: #b00020;
}

.columnHeight {
  height: 61px;
}

#divRevPrev {
  padding-top: 1%;
}

.tabs {
  overflow: hidden;
}

.oias-select {
  width: 100%;
}

.spacingTop {
  margin-top: -29px;
}




.is-center {
  text-align: center;
}

.is-size {
  width: 100%;
}

.sizeVertical {
  height: 45px !important;
}

.is-termAndConditionsBorder {
  height: 361px;
  padding: 16px;
  overflow-y: auto;
  border-color: #DBDBDB;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  margin-bottom: 8px;
  width: 734px;
  text-align: justify;
  color: black;
}

.typography {
  font-weight: bold;
}

.is-sizeContainer {
  width: 60% !important;
}

@media screen and (max-width: 921px) {
  .is-sizeContainer {
    width: 100% !important;
  }
}

.width {
  width: 100% !important;
}

.is-hiddenInput {
  border-block: none;
  border-left: hidden;
  border-right: hidden;
  margin-bottom: 13px;
  margin-right: 39px;
  margin-top: 6px;
}

.is-sizeContainerModal {
  width: 100% !important;
  text-align: center;
}

.is-sizeText {
  font-size: 20px;
}


.panel-heading {
  background-color: #32569c;
  color: #f5f5f5d1;
}

.tittleModal {
  /* text-align: center; */
  font-weight: bold;
  font-size: 25px;
  padding-left: 34%;
  padding-top: 4%;
}

.is-OiaCommentHidden {
  display: none;
}

.widthComment {
  width: 100% !important;
}

.is-selectStatus {
  height: 100% !important;
  border-color: #244b95 !important;
  border: 1.5px solid #a5a5a5 !important;
  border-radius: 0.5rem !important;
}

.textBold {
  font-weight: bold;
}

.textSize {
  font-size: 14px;
}

.is-backgroundColor-Personalized {
  background-color: lemonchiffon;
}

.centerNav {
  width: 100%;
  border-radius: 10px;
  /* margin-left: -0.7rem; */
  z-index: 9 !important;
}

.is-sizeLogout {
  width: 0px;
  height: 22px;
  margin-top: 2px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.alignText {
  text-align: right;
}

.file-name {
  max-width: 31rem !important;
  padding-top: 0px;
}

.mdc_size_button {
  width: 0px !important;
  min-width: 30px !important;
  height: 29px !important;
}


.tooltip {
  position: relative;
}

.tooltip:hover {
  text-decoration: none;
}

.tooltip:after {
  content: attr(tip);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 90%;
  line-height: 1.2em;
  color: rgb(3, 3, 3);
  width: auto;
  padding: 5px 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: #092c42;
  background: -webkit-linear-gradient(#e6f5f7, #e6f5f7);
  background: -moz-linear-gradient(#e6f5f7, #e6f5f7);
  background: -o-linear-gradient(#e6f5f7, #e6f5f7);
  background: -ms-linear-gradient(#e6f5f7, #e6f5f7);
  background: linear-gradient(#e6f5f7, #e6f5f7);
  -moz-box-shadow: 3px 3px 4px rgba(0, 0, 0, .65);
  -webkit-box-shadow: 3px 3px 4px rgba(0, 0, 0, .65);
  box-shadow: 3px 3px 4px rgba(0, 0, 0, .65);
  position: absolute;
  top: 27px;
  left: -92px;
  display: none;
  text-transform: none;
}

.tooltip:before {
  z-index: 1000;
  position: absolute;
  content: "";
  top: 15px;
  left: 0px;
  border-right: 7px transparent solid;
  border-left: 7px transparent solid;
  display: none;
}

.tooltip:hover {
  z-index: 1000;
  position: relative;
  color: #b1aeb6;
}

.tooltip:hover:after {
  display: block;
}

.tooltip:hover:before {
  display: block;
}


.disabled {
  pointer-events: none;
  cursor: default;
  opacity: .4;
}

.size-text {
  font-size: 14px;
}


#inspectorFileText {
  white-space: nowrap;
  overflow: hidden;
}

#OIAFileTextExistence {
  white-space: nowrap;
  overflow: hidden;
}

#OIAFileTextONAC {
  white-space: nowrap;
  overflow: hidden;
}

.overflow-visible {
  white-space: initial;
}

.overflow-clip {
  text-overflow: clip;
}

.overflow-ellipsis {
  text-overflow: ellipsis;
}

.overflow-string {
  /* Not supported in most browsers,
     see the 'Browser compatibility' section below */
  text-overflow: " [..]";
}

.lineWrap {
  white-space: break-spaces;
}

.sizeSelectOption {
  padding-bottom: 0.1rem !important;
  padding-top: 0.2rem !important;
  min-height: 34px !important;
}

.swal-modal .swal-text {
  text-align: center;
}


/* Inputs - Beginning */
.mdc-input-custom {
  position: relative;
  width: 100% !important;
}

.mdc-input-custom__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid #a5a5a5;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  padding: 1.25rem;
  background: none;
  font-family: 'Roboto', sans-serif;
  /* Change border when input focus*/
}

.mdc-input-custom__input:hover.mdc-input-custom__input:not(:disabled) {
  border-color: #244b95;
}

.mdc-input-custom__input:focus {
  border-color: #244b95;
}

.mdc-input-custom__label {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 2rem;
  font-size: inherit;
  color: #a5a5a5;
  cursor: text;
  transition: top 100ms ease-in, left 100ms ease-in, font-size 100ms ease-in, background-color 150ms ease-in;
}

/* focus */
.mdc-input-custom__input:focus~.mdc-input-custom__label,
.mdc-input-custom__input:not(:placeholder-shown).mdc-input-custom__input:not(:focus)~.mdc-input-custom__label {
  top: -0.55rem;
  font-size: 0.8rem;
  left: 0.8rem;
  color: #244b95;
  background-color: #f5f7fa;
}

/* disabled */
.mdc-input-custom__input:not(:placeholder-shown).mdc-input-custom__input:disabled~.mdc-input-custom__label {
  background-image: linear-gradient(180deg, #ffffff 0, #ffffff 16.67%, #ffffff 33.33%, #ebebebd1 62%, #ebebebd1 66.67%, #ebebebd1 83.33%, #ebebebd1 100%);
  color: grey !important;
}

.mdc-input-custom__input:disabled {
  background-color: #ebebebd1;
  color: grey;
}

/* Inputs - End */


/* Select - Beginning */
.mdc-select-custom {
  position: relative;
  width: 100%;
  height: 100%;
}

.mdc-select-custom__input {
  position: relative;
  font-family: 'Roboto', sans-serif;
  background-color: transparent;
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 18px;
  border-radius: 0.5rem;
  border: 1.5px solid #a5a5a5;
  font-size: inherit;
  height: 100%;
  padding-left: 10px;
}

/* Hover and Focus */
.mdc-select-custom__input:hover {
  outline: none;
  border-color: #244b95;
}

.mdc-select-custom__input:focus {
  outline: none;
  border-color: #244b95;
}

/* Use custom arrow */
.mdc-select-custom .mdc-select-custom__input {
  appearance: none;
  -webkit-appearance: none
}

.mdc-select-custom:after {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.mdc-select-custom:hover::after {
  border-top: 6px solid #244b95;
}

/* Label */
.mdc-select-custom__label {
  font-size: 18px;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  color: #a5a5a5;
  font-weight: normal;
  pointer-events: none;
  transition: 0.2s ease all;
}

.mdc-select-custom__input:focus {
  outline: none;
  border-color: #244b95;
}

/* active state */
.mdc-select-custom__input:focus~.mdc-select-custom__label,
.mdc-select-custom__input:valid~.mdc-select-custom__label {
  color: #244b95;
  top: -0.55rem;
  transition: 0.2s ease all;
  font-size: 12px;
  background-color: white;
  padding: 0px 9px;
}

.mdc-select-custom__input:focus~.mdc-select-custom-bar:before,
.mdc-select-custom__input:focus~.mdc-select-custom-bar:after {
  width: 50%;
}

/* Select - End */


/* Button Hidden text - Start */
.mdc-button-custom {
  background-color: #3298dc;
  border-color: transparent;
  color: #fff;
  border-width: 1px;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(.5em - 1px);
  white-space: nowrap;
  -webkit-appearance: none;
  align-items: center;
  border-radius: 20px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  position: relative;
  width: 50px;
  transition: 0.6s ease-in-out;
  max-width: fit-content;
}

.mdc-button-custom .mdc-button-custom__icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-style: inherit;
  font-weight: inherit;
  height: 1.5rem;
  width: 1.5rem;
}

.mdc-button-custom__text {
  font-style: inherit;
  font-weight: inherit;
  transition: 0.6s ease-in-out;
  opacity: 0;
  width: 0px;
  overflow: hidden;
}

/* hover */
.mdc-button-custom:hover {
  width: calc(100% - 0px);
  border-radius: 4px;
}

.mdc-button-custom:hover .mdc-button-custom__text {
  opacity: 1;
  width: 100%;
}

.is-hidden {
  display: none;
}

.button-status {
  border-radius: 7px !important;
  width: 103px !important;
  justify-content: center !important;
  height: 25px !important;
}

/* Button Hidden text - End */
#modal-card-bodyOIAlog {
  border-radius: 10px;
  width: 100%;
  font-size: larger;
  line-height: 1.2;
  height: 514px;
}

#log-changes-modal {
  color: #363636;
  font-size: larger;
}

#table-container-scroll-style {
  padding-top: 10px;
  height: 370px;
}

.columns-log-changes-modal {
  text-align: center;
}

#modalLog tbody {
  font-size: 17px;
}

#modal-content-border-style {
  width: 800px;
}

#button-close-log-changes-modal {
  padding-top: 12px;
}

#modalLog th {
  width: 180px;
}

.tile-text-center {
  text-align: center;
}

.thead-center {
  text-align: center;
}

.tbody-center {
  text-align: center;
}

.button-close-modal-content {
  justify-content: center;
  height: 4rem;
}

.tile-border {
  border-width: 29px 0 0 4px;
  border-color: #fad2d9;
  border-color: #dbdbdb;
  border-radius: .375em;
  border-style: solid;
  border-width: 0 0 6px 0;
  color: #4a4a4a;
  padding: 4em 1.5em;
}

.layout-grid-content {
  padding: 0px;
  padding-top: 2rem;
}

.layout-grid-inner {
  margin-top: -3%;
}

.subtitle-font-size {
  font-size: 16px;
}

#subtitleListReport {
  font-size: xx-small;
  font-size: 20px;
  font-weight: 600;
}

#cardBox {
  box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%)
}

#thFooter {
  text-align: center;
  padding-top: 1.25em;
}

#buttonViewAll {
  border-radius: 4px;
  min-width: 30px !important;
  height: 32px;
  width: 100px;
  background-color: #00aaac;
  font-size: 14px;
}

#buttonReportView {
  border-radius: 4px;
  width: 0px !important;
  min-width: 30px !important;
  height: 29px !important;
  background-color: #00aaac
}

.column-size {
  width: 14rem;
}

.tile-color-border-approved {
  border-color: #1cc356;
}

.tile-color-border-created {
  border-color: #0099ac;
}

.tile-color-border-rejected {
  border-color: #c61639;
}

.tile-color-border-inconsistent {
  border-color: #ed8207;
}

.tile-color-border-to-manage {
  border-color: #6F42C1;
}

.tile-color-border-validator-review {
  border-color: #FFC107;
}

.tile-color-border-automatic {
  border-color: #E83E8C;
}

#columnSubtitleListReport {
  padding-top: 1rem;
}

#buttonDisplay {
  display: none;
}

.errorMsgflashNotificationsBorder {
  border-radius: 9px;
}

.mdc-button-personalized {
  margin-left: 2px;
  background-color: #21618C !important;
  color: #f0f8ff !important;
}

.errorConfirmUserPhone {
  color: red;
}

.column-personalized {
  padding-left: 1.5rem !important;
}

.header-column-personalized {
  padding-left: 1.5rem !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.centerButtonOpenModal {
  padding-left: 2rem !important;
}

.buttonDownloadFile {
  height: 25px;
  border-radius: 0px 0px 4px 4px;
}

.divider {
  border-top: 0.1px solid #ccc;
  margin: 0.5rem 0rem;
  ;
  padding: 0rem;
}

.mdc-custom-grid-item {
  flex-basis: calc(50% - 10px);
  margin-top: 0.5rem;
}

.mdc-custom-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

  body {
    background: #f5f7fa;
  }
  .page-wrapper {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
  }
  .card {
    width: 100%;
    max-width: 1100px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .title {
    color: #1f2d3d;
  }
  .field label.label {
    font-weight: 600;
    margin-bottom: 6px;
  }
  .input, .textarea, .select select {
    border-radius: 8px;
    border: 1px solid #d1d6dd;
    box-shadow: none;
    background-color: #f5f7fa;
  }
  .input:focus, .textarea:focus, .select select:focus {
    border-color: #3273dc;
    box-shadow: 0 0 0 0.1em rgba(50,115,220,.25);
  }
  .button.is-primary {
    border-radius: 8px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .modern-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
  }
  .hidden-input {
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
  z-index: -1;
}

    .btn-upload {
    background: #3273dc;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    }

    .modern-card table {
  width: 100%;
  border-collapse: collapse;
}

.modern-card th {
  background: #f0f4ff;
  padding: .75rem;
  text-align: left;
  font-weight: 600;
  color: #2a3f6b;
  border-bottom: 2px solid #dbe2ef;
}

.modern-card td {
  padding: .7rem .6rem;
  background: white;
  border-bottom: 1px solid #e5e8ef;
}

.modern-card tr:hover td {
  background: #f7f9fc;
}

.modern-card .delete-btn {
  color: #d9534f;
  cursor: pointer;
  font-weight: 600;
}


.form-grid.gasera-grid {
  grid-template-columns: 1fr 1fr 150px !important;
}


@media (max-width: 520px) {
  .form-grid.gasera-grid {
    grid-template-columns: 1fr 1fr 100px !important;
  }
}


  body { background: #f5f7fa; }
  .modern-container {
    margin: auto;
    max-width: 111rem;
    width: 100%;
    padding: 0 1rem;
  }
  .page-header-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }
  .header-title h1 { font-size: 1.8rem; font-weight: 600; color: #32569c; }
  .form-section-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .section-title {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a3f6b;
  }
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .form-field label { font-weight: 600; color: #233a66; margin-bottom: .4rem; display: block; }
  input, select {
    width: 100%; padding: .65rem .8rem; border: 1px solid #dcdfe3;
    border-radius: 8px; background: #fafbfd;
    transition: .2s;
  }
  input:focus, select:focus {
    border-color: #3c6ff6;
    box-shadow: 0 0 0 2px rgba(60,111,246,.15);
  }
  .span-2 { grid-column: span 2; }
  .file-field label { font-weight: 600; }
  .file-box {
    display: flex; flex-direction: column; gap: .5rem;
    border: 1px dashed #bfc6d1; padding: 1rem; border-radius: 8px;
    background: #fafafa;
  }
  .file-download {
    font-size: .9rem; color: #32569c; text-decoration: underline;
  }
  .info-note { margin: 1rem 0; font-size: .9rem; color: #444; }
  .terms-box {
    margin-top: 2rem; padding: 1.5rem;
    background: #f0f4ff;
    border-radius: 12px;
  }
  .submit-wrapper { text-align: center; margin-top: 2rem; }
  .button.primary {
    background: #32569c; color: white; border: none;
    padding: .85rem 2rem; border-radius: 8px;
    font-size: 1rem; cursor: pointer;
  }
  .button.primary:hover { background: #23447b; }

  .overflow-ellipsis {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.terms-container {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  margin: 0 auto 20px auto;
  font-family: "Inter", sans-serif;
}


.terms-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}


.terms-content {
  max-height: 250px;
  overflow-y: auto;
  padding: 15px;
  background: #fafafa;
  border-radius: 8px;
  line-height: 1.5;
  color: #444;
  border: 1px solid #ddd;
}

.terms-content::-webkit-scrollbar {
  width: 6px;
}

.terms-content::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 10px;
}

.terms-content::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.terms-content a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

.terms-check {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}


.terms-check input {
  display: none;
}


.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #0066cc;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}


.terms-check input:checked + .checkmark {
  background: #0066cc;
  border-color: #0066cc;
}

.terms-check input:checked + .checkmark:after {
  content: "✓";
  color: white;
  font-size: 14px;
  position: absolute;
  top: -1px;
  left: 4px;
}


 
    .organismo-box {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        padding: 1.2rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
    }


    .organismo-box h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 12px;
    }

 
    .tabla-organismos {
        width: 100%;
        border-collapse: collapse;
        background: #fafafa;
        border-radius: 8px;
        overflow: hidden;
        margin-top: 10px;
    }

    .tabla-organismos thead {
        background: #f3f4f6;
    }

    .tabla-organismos th {
        padding: 10px;
        text-align: left;
        font-weight: 600;
        font-size: 14px;
        color: #374151;
        border-bottom: 1px solid #e5e7eb;
    }

    .tabla-organismos td {
        padding: 10px;
        background: white;
        font-size: 14px;
        color: #4b5563;
        border-bottom: 1px solid #f3f4f6;
    }

    .tabla-organismos tr:last-child td {
        border-bottom: none;
    }


    .tabla-organismos tbody tr:hover {
        background: #f9fafb;
        transition: 0.2s;
    }


    .delete-btn {
        color: #d9534f !important;
        cursor: pointer;
        font-size: 18px;
        transition: 0.2s;
    }

    .delete-btn:hover {
        color: #b52b2b !important;
        transform: scale(1.2);
    }


    #btnAgregarCodigo {
        background: #1b4fb1 !important;
        color: #fff !important;
        border-radius: 8px;
        font-weight: 600;
        transition: 0.2s;
        text-transform: none !important;
        font-family: "Segoe UI", "Arial", sans-serif !important;
    }

    #btnAgregarCodigo:hover {
        background: #1d4ed8 !important;
        transform: scale(1.03);
    }

    .mdc-input-custom,
    #btnAgregarCodigo {
        height: 48px;
    }

    .labelReviewer {
      background-color: white !important;
    }