.jost-normal {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.pixi-margin-bottom-normal {
  margin-bottom: 1rem; 
}

.pixi-margin-normal {
  margin: 1rem; 
}


.pixi-padding-bottom-normal {
  padding-bottom: 1rem; 
}

.pixi-padding-normal {
  padding: 1rem; 
}

h1 {
  font-size: 1.8em;
  font-weight: 400;
}


#error_message {
  display: none;
}

.pixi-flex {
  display: flex;
}


.no-bottom-margin {
  margin-bottom: 0px;
}

.no-top-margin {
  margin-top: 0px !important;
}

a {
  cursor: pointer;
}

a.pixi-small {
  font-size: 0.6em;
}


body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f9f9fb;
  font-family: "Jost", sans-serif;
}
header {
  position: relative;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
header .logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .logo-container img {
  height: 40px;
}
header .logo-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}
header .hamburger {
  position: absolute;
  left: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
}
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}


.nav-link {
  text-decoration: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1024px;
  text-align: center;
}


.btn-next {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background-color: #accffe;
  border: none;
  color: white;
  transition: all 0.2s ease;
}
.btn-next:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-next:active {
  transform: translateY(0);
  box-shadow: none;
}
.progress {
  height: 8px;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.progress-bar {
  background-color: #ACCFEE;
}


.button-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.button-container.inline {
  flex-direction: row;
  justify-content: center;
}

.btn-large {
  font-size: 1.2rem;
  padding: 0.5rem;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large.btn-20 {
  width: 20%;
}

.btn-30 {
  width: 30%;
}

.btn-25 {
  width: 25%;
}

.btn-primary {
  background-color: #accffe;
  color: #1e1e1e;
  border-color: #accffe;
}

.btn-primary:hover {
  background-color: #1e1e1e;
  border-color: #1e1e1e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #1e1e1e;
  border-color: #accffe;
}

.btn-secondary:hover {
  background-color: #accffe;
  color: #1e1e1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-large:active {
  transform: translateY(0);
  box-shadow: none;
}


.input-wrapper {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

input {
  font-size: 1.2rem;
  padding: 0.5rem;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid #accffe;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  color: #1e1e1e;
  border-color: #accffe;
  outline: none !important;
}

input:focus {
  border: 2px solid #accffe;
  outline: none !important;
}

input.error {
  border-color: #ff3132 !important;
}

input:focus.error{
  border-color: #ff3132 !important;
}


.language-selector {
  position: absolute;
  display: inline-block;
  left: 4rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background-color: white;
  border: 1px solid #accffe;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  min-width: 50px;
}

.language-btn:hover {
  border-color: #007bff;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.flag-icon {
  width: 20px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.arrow {
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.language-selector.active .arrow {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.language-selector.active .language-dropdown {
  display: flex;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: white;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  text-align: left;
  transition: background-color 0.2s ease;
}

.language-option:hover {
  background-color: #f0f7ff;
}

.language-option:not(:last-child) {
  border-bottom: 1px solid #eee;
}


/* Table styling using display: table */
.pixi-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-header {
  display: table-header-group;
  background-color: #ACCFFE;
  color: #1E1E1E;
  font-weight: bold;
}

.table-row {
  display: table-row;
}

.table-row:nth-child(even) {
  background-color: #f9f9f9;
}


.table-cell {
  display: table-cell;
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  font-weight: 300;
}

.table-header .table-cell {
  border-bottom: 2px solid #0066cc;
  padding: 15px;
}

/* Striped variant */
.pixi-table.striped .table-row:nth-child(odd) {
  background-color: #fff;
}

.pixi-table.striped .table-row:nth-child(even) {
  background-color: #f9f9f9;
}

/* Bordered variant */
.pixi-table.bordered .table-cell {
  border: 1px solid #ddd;
}

/* Compact variant */
.pixi-table.compact .table-cell {
  padding: 8px 10px;
}

/* Highlight column */
.table-cell.highlight {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
}

/* Status indicators */
.status-active {
  color: #28a745;
  font-weight: bold;
}

.status-pending {
  color: #ffc107;
  font-weight: bold;
}

.status-inactive {
  color: #dc3545;
  font-weight: bold;
}

.select2-container--bootstrap .select2-selection--single {
  height: 38px;  
  min-width: 150px;
}


.display-none {
  display: none;
}

.dropzone {
  border: 2px solid #ACCFFE;
}

.hover-none:hover {
  background-color: inherit;
  color: inherit;
  transform: none;
  opacity: 1;
  border: inherit;
}