:root {
  --border: #e5e7eb;
  --hero: #2f3b45;
  --input-bg: #f3f4f6;
  --muted: #6b7280;
  --submit: #96c10f;
  --submit-hover: #96c10f;
  --text: #111827;
  --etwaz-mobile-topbar-height: 56px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #f5f7fa;
  color: var(--text);
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.etwaz-app-body {
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.etwaz-app-main {
  background: #f8f9fa;
  flex: 1;
  margin-left: 250px;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 3rem;
  padding-bottom: 4rem;
  transition: margin-left 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.etwaz-mobile-topbar {
  align-items: center;
  background: #1f2937;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  height: var(--etwaz-mobile-topbar-height);
  justify-content: space-between;
  left: 0;
  padding: 0 1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 220;
}

.etwaz-mobile-menu-btn {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 44px;
}
.etwaz-mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.etwaz-mobile-menu-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.etwaz-mobile-menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  height: 18px;
  justify-content: center;
  width: 22px;
}
.etwaz-mobile-menu-icon span {
  background: currentColor;
  border-radius: 9999px;
  display: block;
  height: 2px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.etwaz-mobile-logo {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}
.etwaz-mobile-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.etwaz-mobile-topbar-spacer {
  display: inline-flex;
  height: 44px;
  width: 44px;
}

.etwaz-mobile-overlay {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}

.etwaz-app-body.etwaz-sidebar-collapsed .etwaz-app-main {
  margin-left: 0;
}

@media (max-width: 968px) {
  .etwaz-app-main {
    margin-left: 0;
    padding: 1rem;
    padding-top: calc(1rem + var(--etwaz-mobile-topbar-height));
  }
  .etwaz-app-body.etwaz-sidebar-collapsed .etwaz-app-main {
    margin-left: 0;
  }
  .etwaz-mobile-topbar {
    display: flex;
  }
  .etwaz-mobile-overlay {
    display: block;
  }
  .etwaz-app-body.etwaz-mobile-menu-open {
    height: 100vh;
    overflow: hidden;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .etwaz-app-main {
    padding: 0.5rem;
    padding-top: calc(0.5rem + var(--etwaz-mobile-topbar-height));
  }
}
@media (max-width: 480px) {
  .etwaz-app-main {
    padding: 0.25rem;
    padding-top: calc(0.25rem + var(--etwaz-mobile-topbar-height));
  }
}
.etwaz-sidebar {
  background: var(--hero);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 250px;
  z-index: 210;
  overflow: visible;
}
.etwaz-sidebar.etwaz-sidebar-collapsed {
  width: 4px;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-header,
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-nav,
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-footer {
  opacity: 0;
  visibility: hidden;
  width: 0;
  overflow: hidden;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-toggle {
  right: -30px;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-toggle-icon {
  transform: rotate(180deg);
}

.etwaz-sidebar-toggle {
  align-items: center;
  background: var(--hero);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 30px;
  z-index: 101;
}
.etwaz-sidebar-toggle:hover {
  background: rgba(47, 59, 69, 0.95);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.etwaz-sidebar-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.etwaz-sidebar-toggle-icon {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  height: 16px;
  justify-content: center;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 16px;
}
.etwaz-sidebar-toggle-icon svg {
  color: currentColor;
  display: block;
  height: 100%;
  width: 100%;
}

.etwaz-sidebar-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem;
}
.etwaz-sidebar-header a {
  display: block;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-sidebar-header a:hover {
  transform: scale(1.05);
}

.etwaz-sidebar-header .etwaz-logo {
  height: 44px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: auto;
}
.etwaz-sidebar-header .etwaz-logo:hover {
  transform: scale(1.05);
}

.etwaz-sidebar-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

.etwaz-sidebar-item {
  align-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  font-weight: 500;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-sidebar-item::before {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-sidebar-item:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.etwaz-sidebar-item:hover::before {
  opacity: 1;
}

.etwaz-sidebar-item-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
}
.etwaz-sidebar-item-active::before {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}
.etwaz-sidebar-item-active::after {
  background: var(--submit);
  border-radius: 0 8px 8px 0;
  content: "";
  height: 60%;
  position: absolute;
  right: 0;
  width: 3px;
}

.etwaz-sidebar-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  position: relative;
  width: 20px;
  z-index: 1;
}
.etwaz-sidebar-icon svg {
  color: currentColor;
  display: block;
  height: 100%;
  width: 100%;
}

.etwaz-sidebar-label {
  flex: 1;
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

.etwaz-sidebar-badge {
  align-items: center;
  background: #ef4444;
  border-radius: 9999px;
  color: #ffffff;
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

.etwaz-sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.etwaz-sidebar-logout {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  gap: 0.875rem;
  line-height: inherit;
  margin: 0;
  padding: 0.875rem 1rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-sidebar-logout::before {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-sidebar-logout:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.etwaz-sidebar-logout:hover::before {
  opacity: 1;
}
.etwaz-sidebar-logout .etwaz-sidebar-icon {
  flex-shrink: 0;
}
.etwaz-sidebar-logout .etwaz-sidebar-label {
  flex: 1;
}

@media (max-width: 968px) {
  .etwaz-sidebar {
    height: calc(100vh - var(--etwaz-mobile-topbar-height));
    top: var(--etwaz-mobile-topbar-height);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 280px;
  }
  .etwaz-sidebar.etwaz-sidebar-open {
    transform: translateX(0);
  }
  .etwaz-sidebar-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .etwaz-sidebar {
    width: 100%;
    max-width: 320px;
  }
  .etwaz-sidebar-header {
    padding: 1rem 1.5rem;
  }
  .etwaz-sidebar-nav {
    padding: 0.5rem;
  }
  .etwaz-sidebar-item {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }
  .etwaz-sidebar-label {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .etwaz-sidebar {
    width: 100%;
  }
  .etwaz-sidebar-header {
    padding: 0.5rem 1rem;
  }
  .etwaz-sidebar-header .etwaz-logo {
    height: 36px;
  }
  .etwaz-sidebar-item {
    padding: 0.625rem 0.5rem;
    font-size: 0.875rem;
  }
  .etwaz-sidebar-icon {
    height: 18px;
    width: 18px;
  }
}
.etwaz-auth-wrapper {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.etwaz-auth-card {
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

.etwaz-auth-hero {
  align-items: center;
  background: var(--hero);
  display: flex;
  padding: 20px 24px;
}

.etwaz-logo {
  height: 50px;
  width: auto;
}

.etwaz-auth-body {
  padding: 24px 100px;
}

.etwaz-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
  text-align: center;
}

.etwaz-subtitle {
  color: var(--muted);
  margin: 0 0 1.25rem 0;
  text-align: center;
}

.etwaz-auth-footer {
  border-top: 1px solid var(--border);
  color: #374151;
  margin: 1rem 0 0 0;
  padding: 0.75rem 0 0 0;
}

.etwaz-auth-footer a {
  margin: 0 0 0 0.25rem;
  text-decoration: none;
}

.ui.form .field > label,
.etwaz-form-body .field > label {
  font-weight: 600;
}

.etwaz-auth-body .two.fields,
.ui.form .two.fields {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.etwaz-auth-body .three.fields,
.ui.form .three.fields {
  display: grid !important;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr !important;
  width: 100%;
}

.etwaz-auth-body .two.fields > .field,
.ui.form .two.fields > .field {
  flex: 1;
}

.etwaz-auth-body .three.fields > .field,
.ui.form .three.fields > .field {
  width: 100%;
}

@media (max-width: 480px) {
  .etwaz-auth-body .two.fields,
  .ui.form .two.fields {
    flex-direction: column;
  }
  .etwaz-auth-body .three.fields,
  .ui.form .three.fields {
    grid-template-columns: 1fr !important;
  }
}
.etwaz-auth-body .ui.input > input,
.etwaz-auth-body input[type=text],
.etwaz-auth-body input[type=email],
.etwaz-auth-body input[type=password],
.etwaz-auth-body input[type=file],
.etwaz-form-body .ui.input > input,
.etwaz-form-body input[type=text],
.etwaz-form-body input[type=email],
.etwaz-form-body input[type=password],
.etwaz-form-body input[type=file] {
  background: var(--input-bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}
.etwaz-auth-body .ui.input > input:focus,
.etwaz-auth-body input[type=text]:focus,
.etwaz-auth-body input[type=email]:focus,
.etwaz-auth-body input[type=password]:focus,
.etwaz-auth-body input[type=file]:focus,
.etwaz-form-body .ui.input > input:focus,
.etwaz-form-body input[type=text]:focus,
.etwaz-form-body input[type=email]:focus,
.etwaz-form-body input[type=password]:focus,
.etwaz-form-body input[type=file]:focus {
  border-color: var(--submit) !important;
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.1) !important;
  outline: none !important;
}
.etwaz-auth-body .ui.input > input::placeholder,
.etwaz-auth-body input[type=text]::placeholder,
.etwaz-auth-body input[type=email]::placeholder,
.etwaz-auth-body input[type=password]::placeholder,
.etwaz-auth-body input[type=file]::placeholder,
.etwaz-form-body .ui.input > input::placeholder,
.etwaz-form-body input[type=text]::placeholder,
.etwaz-form-body input[type=email]::placeholder,
.etwaz-form-body input[type=password]::placeholder,
.etwaz-form-body input[type=file]::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.etwaz-auth-body .ui.left.icon.input > input {
  padding-left: 2.2em !important;
}

.etwaz-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
}

.etwaz-remember {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  gap: 0.625rem;
  margin: 0.5rem 0 0 0;
  user-select: none;
}

.etwaz-remember-label {
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  user-select: none;
}

.etwaz-switch {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  height: 24px;
  position: relative;
  user-select: none;
  width: 44px;
}

.etwaz-switch > input {
  appearance: none;
  height: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.etwaz-switch > .etwaz-slider {
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  display: block;
  height: 100%;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

.etwaz-switch > .etwaz-slider::before {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  content: "";
  display: block;
  height: 20px;
  left: 2px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 20px;
}

.etwaz-switch > input:checked + .etwaz-slider {
  background: var(--submit);
  border-color: var(--submit);
}

.etwaz-switch > input:checked + .etwaz-slider::before {
  transform: translate(20px, -50%);
}

.etwaz-switch > input:focus-visible + .etwaz-slider {
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.3);
}

.etwaz-switch > input:disabled + .etwaz-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.field.required > label::after,
label.required::after {
  content: " *";
  color: #e11d48;
  font-weight: bold;
}

@media (max-width: 768px) {
  .etwaz-auth-body {
    padding: 2rem 1.5rem;
  }
  .etwaz-title {
    font-size: 1.75rem;
  }
  .etwaz-subtitle {
    font-size: 0.9375rem;
  }
  .etwaz-auth-body .two.fields,
  .ui.form .two.fields {
    flex-direction: column;
  }
  .etwaz-auth-body .three.fields,
  .ui.form .three.fields {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .etwaz-auth-body {
    padding: 1.5rem 1rem;
  }
  .etwaz-title {
    font-size: 1.5rem;
  }
  .etwaz-subtitle {
    font-size: 0.875rem;
  }
  .etwaz-logo {
    height: 44px;
  }
  .etwaz-auth-hero {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .etwaz-auth-card {
    width: 100%;
  }
  .etwaz-auth-body {
    padding: 1rem;
  }
  .etwaz-title {
    font-size: 1.25rem;
  }
  .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-logo {
    height: 40px;
  }
  .etwaz-auth-hero {
    padding: 0.5rem 1rem;
  }
  .etwaz-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-actions button {
    width: 100%;
  }
}
.etwaz-submit {
  background: var(--submit) !important;
  border: none !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem !important;
  text-align: center;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-submit:hover, .etwaz-submit:focus {
  background: var(--submit-hover) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.etwaz-submit:active {
  transform: translateY(0);
}
.etwaz-submit:disabled, .etwaz-submit[disabled], .etwaz-submit[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
  transform: none;
}

.etwaz-btn-add {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.etwaz-btn-add span {
  font-size: 1.2rem;
  font-weight: bold;
}

.etwaz-btn-invite {
  background: var(--submit) !important;
  border: none !important;
  border-radius: 9999px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.etwaz-btn-invite:hover {
  background: var(--submit-hover) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-btn-invite:active {
  transform: translateY(0);
}

.etwaz-btn-small {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem !important;
}

.etwaz-btn-danger {
  background: #ef4444 !important;
  border: none !important;
  border-radius: 9999px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-danger:hover {
  background: #dc2626 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-btn-danger:active {
  transform: translateY(0);
}

.etwaz-btn-secondary {
  background: #6b7280 !important;
  border: none !important;
  border-radius: 9999px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-secondary:hover {
  background: #4b5563 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-btn-secondary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .etwaz-submit {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-invite,
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-small {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem !important;
  }
}
@media (max-width: 640px) {
  .etwaz-submit {
    width: auto;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-invite {
    width: auto;
    font-size: 0.8125rem;
  }
  .etwaz-btn-small {
    width: auto;
    font-size: 0.8125rem;
  }
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
    width: auto;
  }
}
@media (max-width: 480px) {
  .etwaz-submit {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem !important;
  }
  .etwaz-btn-invite,
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem !important;
    width: auto;
  }
  .etwaz-btn-small {
    font-size: 0.75rem;
    padding: 0.4375rem 0.75rem !important;
  }
}
.etwaz-dashboard {
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 4rem;
}

.etwaz-dashboard-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.etwaz-dashboard-title {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
}

.etwaz-dashboard-subtitle {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.etwaz-stats-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-stats-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.etwaz-stat-item {
  flex: 1;
  position: relative;
  text-align: center;
}
.etwaz-stat-item a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.etwaz-stat-item:not(:last-child)::after {
  background: #e5e7eb;
  content: "";
  height: 60%;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.etwaz-stat-icon {
  align-items: center;
  color: var(--submit);
  display: flex;
  height: 32px;
  justify-content: center;
  margin: 0 auto 0.5rem;
  opacity: 0.8;
  width: 32px;
}
.etwaz-stat-icon svg {
  height: 100%;
  width: 100%;
}

.etwaz-stat-value {
  color: var(--text);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-stat-item:hover .etwaz-stat-value {
  color: var(--submit);
}

.etwaz-stat-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.etwaz-projects-section {
  margin-bottom: 2rem;
}

.etwaz-projects-section-title {
  color: var(--text);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
}

.etwaz-search-wrapper {
  position: relative;
}

.etwaz-search-input-wrapper {
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  position: relative;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-search-input-wrapper:focus-within {
  border-color: var(--submit);
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.1);
}

.etwaz-search-icon {
  color: var(--muted);
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.etwaz-search-input-wrapper:focus-within .etwaz-search-icon {
  color: var(--submit);
}

.etwaz-search-input {
  background: transparent;
  border: none;
  color: var(--text);
  flex: 1;
  font-size: 1rem;
  outline: none;
  padding: 1rem 0;
  width: 100%;
}
.etwaz-search-input::placeholder {
  color: var(--muted);
}

.etwaz-projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 6rem;
}

.etwaz-search-wrapper {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.etwaz-search-wrapper .etwaz-search-input-wrapper {
  flex: 1;
  min-width: 0;
}

.etwaz-search-wrapper .etwaz-submit {
  flex: 0 0 auto;
  width: auto !important;
}

.etwaz-empty-state {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 4rem;
  text-align: center;
}

.etwaz-empty-state p {
  margin: 0 0 1.5rem 0;
}

.etwaz-muted {
  color: var(--muted);
}

@media (max-width: 968px) {
  .etwaz-dashboard-title {
    font-size: 2rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.9375rem;
  }
  .etwaz-stats-card {
    gap: 1.5rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .etwaz-dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-dashboard-title {
    font-size: 1.75rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.875rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.5rem;
  }
  .etwaz-stats-card {
    padding: 1rem;
  }
  .etwaz-stat-value {
    font-size: 1.875rem;
  }
  .etwaz-stat-label {
    font-size: 0.8125rem;
  }
  .etwaz-projects-grid {
    gap: 1rem;
  }
  .etwaz-search-input {
    font-size: 0.9375rem;
  }
}
@media (max-width: 640px) {
  .etwaz-dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-dashboard-title {
    font-size: 1.625rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.375rem;
  }
  .etwaz-stats-card {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.5rem;
  }
  .etwaz-stat-icon {
    margin-bottom: 0.25rem;
  }
  .etwaz-stat-value {
    font-size: 1.75rem;
  }
  .etwaz-stat-label {
    font-size: 0.75rem;
  }
  .etwaz-stat-item::after {
    display: none;
  }
  .etwaz-search-input-wrapper {
    padding: 0 0.5rem;
  }
  .etwaz-search-input {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
  .etwaz-empty-state {
    padding: 2rem;
  }
  .etwaz-dashboard {
    font-size: 0.875rem;
  }
  .etwaz-dashboard .etwaz-submit,
  .etwaz-dashboard .etwaz-btn-secondary,
  .etwaz-dashboard .etwaz-btn-add {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact .profile-tab {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
  .etwaz-profile-compact .etwaz-card-title,
  .etwaz-profile-compact .etwaz-card h2 {
    font-size: 1rem;
  }
  .etwaz-profile-compact .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact input,
  .etwaz-profile-compact select,
  .etwaz-profile-compact textarea {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact .etwaz-card-title-icon {
    height: 2rem;
    width: 2rem;
  }
  .etwaz-profile-compact .etwaz-card-title-icon svg {
    height: 1rem;
    width: 1rem;
  }
  .etwaz-profile-compact .etwaz-card-section-header .etwaz-card-title {
    margin-left: 0.5rem;
  }
  .etwaz-profile-compact .etwaz-card .etwaz-card-section-header {
    margin-left: 0;
  }
  .etwaz-profile-compact .etwaz-form-errors-icon svg {
    height: 18px;
    width: 18px;
  }
  .etwaz-profile-compact #tab-security .etwaz-card-title {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact #tab-security .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact #tab-security input {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-meta {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card > p {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card-title {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-title {
    font-size: 0.875rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-description {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-policy-link {
    font-size: 0.8125rem !important;
  }
}
@media (max-width: 480px) {
  .etwaz-dashboard-title {
    font-size: 1.5rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.75rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.25rem;
  }
  .etwaz-stats-card {
    padding: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .etwaz-stat-value {
    font-size: 1.5rem;
  }
  .etwaz-stat-label {
    font-size: 0.6875rem;
  }
  .etwaz-stat-icon {
    height: 28px;
    width: 28px;
  }
  .etwaz-empty-state {
    padding: 1.5rem;
  }
  .etwaz-empty-state p {
    font-size: 0.875rem;
  }
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .etwaz-dashboard {
    font-size: 0.8125rem;
  }
  .etwaz-dashboard .etwaz-submit,
  .etwaz-dashboard .etwaz-btn-secondary,
  .etwaz-dashboard .etwaz-btn-add {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact .profile-tab {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  .etwaz-profile-compact .etwaz-card-title,
  .etwaz-profile-compact .etwaz-card h2 {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact .field > label {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact input,
  .etwaz-profile-compact select,
  .etwaz-profile-compact textarea {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact .etwaz-card-title-icon {
    height: 1.75rem;
    width: 1.75rem;
  }
  .etwaz-profile-compact .etwaz-card-title-icon svg {
    height: 0.875rem;
    width: 0.875rem;
  }
  .etwaz-profile-compact .etwaz-card-section-header .etwaz-card-title {
    margin-left: 0.25rem;
  }
  .etwaz-profile-compact .etwaz-card .etwaz-card-section-header {
    margin-left: 0;
  }
  .etwaz-profile-compact .etwaz-form-errors-icon svg {
    height: 16px;
    width: 16px;
  }
  .etwaz-profile-compact #tab-security .etwaz-card-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact #tab-security .field > label {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact #tab-security input {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-title {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-meta {
    font-size: 0.6875rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card > p {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-title {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-description {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-policy-link {
    font-size: 0.75rem !important;
  }
}
.etwaz-project-card-archived {
  filter: grayscale(0.3);
}
.etwaz-project-card-archived .etwaz-project-card {
  opacity: 0.8;
}

.etwaz-project-card-archived .etwaz-project-card-image img,
.etwaz-project-card-archived .etwaz-project-card-placeholder {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.etwaz-project-card-wrapper {
  position: relative;
}

.etwaz-project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-project-card:hover {
  border-color: rgba(121, 193, 65, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.etwaz-project-card-settings {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  font-size: 1.125rem;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 12px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 36px;
  z-index: 10;
}
.etwaz-project-card-settings:hover {
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: scale(1.1) rotate(90deg);
}
.etwaz-project-card-settings:active {
  transform: scale(1.05) rotate(90deg);
}

.etwaz-project-card-image-wrapper {
  aspect-ratio: 4/3;
  position: relative;
  width: 100%;
}

.etwaz-project-card-image {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.etwaz-project-card-image::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 1;
}

.etwaz-project-card:hover .etwaz-project-card-image::after {
  opacity: 1;
}

.etwaz-project-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.etwaz-project-card:hover .etwaz-project-card-image img {
  transform: scale(1.05);
}

.etwaz-project-card-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}
.etwaz-project-card-placeholder::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 1;
}
.etwaz-project-card-placeholder svg {
  color: var(--muted);
  height: 48px;
  opacity: 0.4;
  position: relative;
  width: 48px;
  z-index: 2;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-project-card:hover .etwaz-project-card-placeholder::after {
  opacity: 1;
}

.etwaz-project-card:hover .etwaz-project-card-placeholder svg {
  color: #ffffff;
  opacity: 0.9;
  transform: scale(1.1);
}

.etwaz-project-card-title-overlay {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  left: 0;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.etwaz-project-card-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.etwaz-project-card-notification {
  background: #ef4444;
  bottom: 0;
  box-shadow: 0 -2px 8px rgba(239, 68, 68, 0.3);
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 10;
}

@media (max-width: 768px) {
  .etwaz-project-card-title {
    font-size: 1rem;
  }
  .etwaz-project-card-settings {
    height: 32px;
    width: 32px;
    right: 8px;
    top: 8px;
  }
  .etwaz-project-card-title-overlay {
    padding: 1rem;
  }
}
@media (max-width: 640px) {
  .etwaz-project-card-title {
    font-size: 0.9375rem;
  }
  .etwaz-project-card-settings {
    height: 28px;
    width: 28px;
    right: 6px;
    top: 6px;
    font-size: 1rem;
  }
  .etwaz-project-card-title-overlay {
    padding: 0.5rem;
  }
}
@media (max-width: 480px) {
  .etwaz-project-card-title {
    font-size: 0.875rem;
  }
  .etwaz-project-card-placeholder svg {
    height: 36px;
    width: 36px;
  }
}
.etwaz-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  max-width: 95%;
  overflow: hidden;
  overflow-x: hidden;
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-form-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.etwaz-form-body {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 3rem;
  width: 100%;
}

.etwaz-form-body .etwaz-title {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  text-align: left;
}

.etwaz-form-body .etwaz-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.ui.form .fields,
.fields {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 0 0 1rem 0;
}

.two.fields,
.fields.two {
  grid-template-columns: 1fr 1fr !important;
}

.three.fields,
.fields.three {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
}

.fields .field {
  min-width: 0;
  width: 100%;
}

.ui.form .field {
  margin: 0 0 1rem 0;
}

.etwaz-ttc-display {
  display: flex;
  justify-content: flex-start;
}

.etwaz-ttc-pill {
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  color: var(--text);
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  min-width: 160px;
  padding: 0.5rem 1rem;
  user-select: none;
}

.etwaz-select-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.etwaz-select,
.etwaz-form-body select {
  background: var(--input-bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  flex: 1;
  padding: 0.75rem 1rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}
.etwaz-select:focus,
.etwaz-form-body select:focus {
  border-color: var(--submit) !important;
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.1) !important;
  outline: none !important;
}

.etwaz-select[type=number],
.etwaz-form-body input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.etwaz-select[type=number]::-webkit-inner-spin-button,
.etwaz-select[type=number]::-webkit-outer-spin-button,
.etwaz-form-body input[type=number]::-webkit-inner-spin-button,
.etwaz-form-body input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field-error label {
  color: #ef4444;
}
.field-error input,
.field-error select,
.field-error textarea {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}
.field-error input:focus,
.field-error select:focus,
.field-error textarea:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.etwaz-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.etwaz-selected-item {
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.etwaz-selected-item span {
  font-size: 0.875rem;
}

.etwaz-remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  width: 20px;
}

.etwaz-remove-btn:hover {
  color: var(--text);
}

.etwaz-file-input {
  background: var(--input-bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-file-input:focus {
  border-color: var(--submit);
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.1);
  outline: none;
}

.etwaz-dropzone {
  align-items: center;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 200px;
  padding: 1.5rem;
  position: relative;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-dropzone:hover {
  border-color: var(--submit);
  background: rgba(121, 193, 65, 0.05);
}
.etwaz-dropzone.etwaz-dropzone-dragover {
  background: rgba(121, 193, 65, 0.1);
  border-color: var(--submit);
  border-style: solid;
}
.etwaz-dropzone.etwaz-dropzone-has-file {
  background: rgba(121, 193, 65, 0.05);
  border-color: var(--submit);
  border-style: solid;
}

.etwaz-dropzone-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
  text-align: center;
}

.etwaz-dropzone-icon {
  font-size: 3rem;
}

.etwaz-dropzone-text {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-dropzone-filename {
  color: var(--submit);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.etwaz-existing-docs {
  margin-top: 1rem;
}

.etwaz-existing-docs-title {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-existing-doc {
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
}

.etwaz-existing-doc-info {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  min-width: 0;
}

.etwaz-existing-doc-icon {
  font-size: 1.1rem;
}

.etwaz-existing-doc-name {
  color: var(--text);
  font-size: 0.9375rem;
  word-break: break-word;
}

.etwaz-existing-doc-actions {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-existing-doc-link {
  color: var(--submit);
  text-decoration: none;
}

.etwaz-existing-doc-delete {
  align-items: center;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.25rem;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.recaptcha-notice {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
}
.recaptcha-notice a {
  color: var(--muted);
  text-decoration: none;
}
.recaptcha-notice a:hover {
  text-decoration: underline;
}

.etwaz-form-errors {
  align-items: flex-start;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.etwaz-form-errors-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.etwaz-form-errors-content {
  flex: 1;
}

.etwaz-form-errors-title {
  color: #991b1b;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-form-errors-list {
  color: #991b1b;
  font-size: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.etwaz-form-errors-list li {
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.etwaz-form-errors-list li:last-child {
  margin-bottom: 0;
}
.etwaz-form-errors-list li strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .etwaz-form-body {
    padding: 1.5rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.75rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.9375rem;
  }
  .two.fields,
  .fields.two {
    grid-template-columns: 1fr;
  }
  .three.fields,
  .fields.three {
    grid-template-columns: 1fr !important;
  }
  .etwaz-select-wrapper {
    flex-direction: column;
  }
  .etwaz-dropzone {
    min-height: 150px;
    padding: 1rem;
  }
  .etwaz-dropzone-icon {
    font-size: 2rem;
  }
  .etwaz-dropzone-text {
    font-size: 0.8125rem;
  }
}
@media (max-width: 640px) {
  .etwaz-form-card {
    max-width: 100%;
    border-radius: 8px;
  }
  .etwaz-form-body {
    padding: 1rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.5rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.875rem;
  }
  .two.fields,
  .fields.two {
    grid-template-columns: 1fr;
  }
  .three.fields,
  .fields.three {
    grid-template-columns: 1fr !important;
  }
  .etwaz-select-wrapper {
    flex-direction: column;
  }
  .etwaz-dropzone {
    min-height: 120px;
    padding: 0.5rem;
  }
  .etwaz-dropzone-icon {
    font-size: 1.5rem;
  }
  .etwaz-dropzone-text {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .etwaz-title {
    font-size: 1.375rem;
  }
  .etwaz-form-body-compact .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact input,
  .etwaz-form-body-compact select,
  .etwaz-form-body-compact textarea {
    font-size: 0.8125rem !important;
  }
  .etwaz-form-body-compact .etwaz-existing-docs-title {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .etwaz-existing-doc-name {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  .etwaz-form-body {
    padding: 0.5rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.25rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-form-errors {
    padding: 1rem;
  }
  .etwaz-form-errors-title {
    font-size: 0.875rem;
  }
  .etwaz-form-errors-list {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .etwaz-title {
    font-size: 1.125rem;
  }
  .etwaz-form-body-compact .etwaz-subtitle {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .field > label {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact input,
  .etwaz-form-body-compact select,
  .etwaz-form-body-compact textarea {
    font-size: 0.75rem !important;
  }
  .etwaz-form-body-compact .etwaz-existing-docs-title {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .etwaz-existing-doc-name {
    font-size: 0.75rem;
  }
}
body.etwaz-modal-open {
  overflow: hidden;
}

.etwaz-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.etwaz-modal.etwaz-modal-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.etwaz-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.etwaz-modal-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  padding: 0;
  position: relative;
  width: 90%;
  z-index: 1001;
  animation: modalSlideIn 300ms cubic-bezier(0.4, 0, 0.2, 1) ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.etwaz-modal-large {
  max-width: 700px;
}

.etwaz-modal-header {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
}

.etwaz-modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.etwaz-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  width: 32px;
}

.etwaz-modal-close:hover {
  color: var(--text);
}

.etwaz-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.etwaz-modal-content form {
  padding: 1.5rem;
}

.etwaz-modal-content .field input[type=text],
.etwaz-modal-content .field input[type=email] {
  background: var(--input-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  width: 100% !important;
}

.etwaz-situation-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.etwaz-situation-modal.show {
  display: flex;
}

.etwaz-situation-modal-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: 95vh;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow-y: auto;
}

.etwaz-situation-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.etwaz-situation-modal-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
}
.etwaz-situation-modal-header .etwaz-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-situation-modal-header .etwaz-modal-close:hover {
  background: #f9fafb;
  color: var(--text);
}

.etwaz-situation-pdf-container {
  flex: 0 0 auto;
  margin-bottom: 1.5rem;
  height: 400px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
  transition: height 0.3s ease;
}
.etwaz-situation-modal-content:has(.etwaz-situation-edit-form.show) .etwaz-situation-pdf-container {
  height: 250px;
}

.etwaz-situation-pdf-viewer {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.etwaz-situation-edit-form {
  display: block;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  flex: 0 0 auto;
}
.etwaz-situation-edit-form h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}
.etwaz-situation-edit-form .three.fields {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.etwaz-situation-edit-form .three.fields .field {
  flex: 1 1 0;
}

.etwaz-situation-vat-grid {
  align-items: center;
  column-gap: 1rem;
  display: grid;
  grid-template-columns: 160px repeat(3, minmax(150px, 1fr));
  row-gap: 1rem;
  width: 100%;
}

.etwaz-situation-vat-head {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.etwaz-situation-vat-label {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.etwaz-situation-grid-input {
  min-height: 44px;
}

.etwaz-situation-retention-cell {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-situation-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 1rem;
}
.etwaz-situation-modal-actions .etwaz-situation-actions-group {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: flex-end;
}

.etwaz-situation-actions-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .etwaz-modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    padding: 0;
  }
  .etwaz-modal-header {
    padding: 1rem;
  }
  .etwaz-modal-header h2 {
    font-size: 1.25rem;
  }
  .etwaz-modal-body {
    padding: 1rem;
    max-height: 65vh;
  }
  .etwaz-modal-content form {
    padding: 1rem;
  }
  .etwaz-situation-modal-content {
    padding: 1.5rem;
    max-height: 90vh;
  }
  .etwaz-situation-modal-header h3 {
    font-size: 1.25rem;
  }
  .etwaz-situation-pdf-container {
    height: 300px;
  }
  .etwaz-situation-pdf-viewer {
    min-height: 300px;
  }
  .etwaz-situation-edit-form {
    padding: 1rem;
  }
  .etwaz-situation-edit-form h4 {
    font-size: 1rem;
  }
  .etwaz-situation-vat-grid {
    column-gap: 0.5rem;
    grid-template-columns: 130px repeat(3, minmax(120px, 1fr));
  }
  .etwaz-situation-modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-situation-modal-actions button {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .etwaz-modal-content {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
  }
  .etwaz-modal-header {
    padding: 0.5rem;
  }
  .etwaz-modal-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-modal-close {
    font-size: 1.75rem;
    width: 28px;
  }
  .etwaz-modal-body {
    padding: 0.5rem;
    max-height: 70vh;
  }
  .etwaz-modal-content form {
    padding: 0.5rem;
  }
  .etwaz-situation-modal-content {
    padding: 1rem;
    max-height: 95vh;
  }
  .etwaz-situation-modal-header h3 {
    font-size: 1.125rem;
  }
  .etwaz-situation-pdf-container {
    height: 250px;
  }
  .etwaz-situation-pdf-viewer {
    min-height: 250px;
  }
  .etwaz-situation-edit-form {
    padding: 0.5rem;
  }
  .etwaz-situation-edit-form h4 {
    font-size: 0.9375rem;
  }
  .etwaz-situation-vat-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
  .etwaz-situation-vat-head {
    display: none;
  }
  .etwaz-situation-vat-label {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
  .etwaz-situation-vat-grid > div:empty {
    display: none;
  }
  .etwaz-situation-modal-actions {
    flex-direction: column;
    gap: 0.25rem;
  }
  .etwaz-situation-modal-actions button {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .etwaz-modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .etwaz-modal-header h2 {
    font-size: 1rem;
  }
  .etwaz-modal-body {
    padding: 0.25rem;
    max-height: 75vh;
  }
  .etwaz-situation-modal {
    padding: 0;
  }
  .etwaz-situation-modal-content {
    padding: 0.5rem;
    max-height: 100vh;
    border-radius: 0;
  }
  .etwaz-situation-pdf-container {
    height: 200px;
  }
  .etwaz-situation-pdf-viewer {
    min-height: 200px;
  }
}
.etwaz-project-detail {
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 2rem;
}

@media (min-width: 1400px) {
  #lot-situations-card {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.etwaz-project-header {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.etwaz-project-header-info {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1.5rem;
  min-width: 0;
}

.etwaz-project-header-title-row {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
}

.etwaz-project-header-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}

.etwaz-project-header-image {
  flex-shrink: 0;
  height: 80px;
  overflow: hidden;
  width: 120px;
}

.etwaz-project-header-image a {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.etwaz-project-header-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etwaz-project-header-title h1 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.etwaz-project-price-toggle {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.etwaz-project-price-label {
  color: var(--muted);
  font-size: 0.8125rem;
}

.etwaz-price-toggle {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 36px;
}

#price-toggle {
  height: 0;
  opacity: 0;
  width: 0;
}

#price-toggle + span {
  background-color: #ccc;
  border-radius: 9999px;
  cursor: pointer;
  inset: 0;
  position: absolute;
  transition: 0.3s;
}

#price-toggle + span:before {
  background-color: #ffffff;
  border-radius: 50%;
  bottom: 3px;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  transition: 0.3s;
  width: 14px;
}

#price-toggle:checked + span {
  background-color: var(--submit, #96c10f);
}

#price-toggle:checked + span:before {
  transform: translateX(16px);
}

.etwaz-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  padding: 2rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-card h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}
.etwaz-card h2.etwaz-card-title,
.etwaz-card h3.etwaz-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}
.etwaz-card .etwaz-card-section-header {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
  margin-left: -2rem;
}
.etwaz-card .etwaz-card-section-header:last-child {
  margin-bottom: 0;
}
.etwaz-card .etwaz-progress-header .etwaz-card-section-header,
.etwaz-card .etwaz-situations-header .etwaz-card-section-header {
  margin-bottom: 0;
}
.etwaz-card .etwaz-card-section-header .etwaz-progress-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-card-title-icon {
  align-items: center;
  background: var(--submit);
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}
.etwaz-card .etwaz-card-title-icon svg {
  height: 1.125rem;
  width: 1.125rem;
}
.etwaz-card .etwaz-card-section-header .etwaz-card-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-card-section-header-with-action {
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
  margin-right: -2rem;
}
.etwaz-card .etwaz-card-section-header-inner {
  align-items: center;
  display: flex;
  margin-left: -2rem;
}
.etwaz-card .etwaz-card-section-header-with-action .etwaz-card-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-btn-modifier {
  background: var(--submit) !important;
  border: none !important;
  border-radius: 9999px;
  color: #ffffff !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  padding: 0.5rem 1.25rem !important;
  text-decoration: none !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-card .etwaz-btn-modifier:hover {
  background: var(--submit-hover) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.etwaz-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.etwaz-progress-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.etwaz-progress-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.etwaz-progress-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.etwaz-progress-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  margin-right: 8.5rem;
  max-width: 50%;
  min-width: 120px;
}

.etwaz-progress-bar-wrapper {
  position: relative;
}

.etwaz-progress-percentage {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.etwaz-progress-bar {
  background: #f3f4f6;
  border-radius: 9999px;
  height: 14px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.etwaz-progress-fill {
  background: var(--submit);
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(121, 193, 65, 0.3);
  height: 100%;
  position: relative;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.etwaz-progress-amounts {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.etwaz-progress-amount-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.etwaz-progress-amount-item:first-child {
  align-items: flex-start;
}
.etwaz-progress-amount-item:nth-child(2) {
  align-items: center;
}
.etwaz-progress-amount-item:last-child {
  align-items: flex-end;
}

.etwaz-progress-amount-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.etwaz-progress-market-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
}

.etwaz-progress-paid-value {
  color: var(--text);
  font-size: 0.875rem;
}

.etwaz-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 1rem;
}

.etwaz-pagination-info {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.etwaz-pagination-btn {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.etwaz-pagination-btn:hover:not(.etwaz-pagination-btn-disabled) {
  background: var(--submit);
  color: white;
  border-color: var(--submit);
}
.etwaz-pagination-btn.etwaz-pagination-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.etwaz-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.etwaz-pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-pagination-number:hover:not(.etwaz-pagination-number-active) {
  background: #f3f4f6;
  border-color: var(--submit);
}
.etwaz-pagination-number.etwaz-pagination-number-active {
  background: var(--submit);
  color: white;
  border-color: var(--submit);
  font-weight: 600;
}

.etwaz-pagination-ellipsis {
  padding: 0 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-progress-paid-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.etwaz-progress-balance-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
}

.etwaz-progress-info {
  display: flex;
  justify-content: space-between;
}

.etwaz-progress-label {
  color: var(--text);
  font-weight: 600;
}

.etwaz-progress-value {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-collapsible-card {
  padding: 0;
}

.etwaz-collapsible-header {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  user-select: none;
}

.etwaz-collapsible-header h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-collapsible-icon {
  color: var(--muted);
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.etwaz-collapsible-content {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.etwaz-lots-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1.5rem;
}

.etwaz-lot-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-lot-card:hover {
  border-color: rgba(121, 193, 65, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.etwaz-lot-card-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.etwaz-lot-card-header h3 {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-lot-company-logo {
  border-radius: 8px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.etwaz-lot-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.etwaz-lot-company-name {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-lot-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.etwaz-lot-stats span {
  color: var(--text);
  font-size: 0.875rem;
}

.etwaz-lot-progress-section {
  margin-bottom: 2rem;
}

.etwaz-lot-progress-bar {
  border-radius: 8px;
  display: flex;
  height: 60px;
  overflow: hidden;
  width: 100%;
}

.etwaz-lot-progress-segment {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.etwaz-lot-progress-segment:not(:last-child) {
  border-right: 2px solid #ffffff;
}

.etwaz-lot-progress-market {
  background: #3b82f6;
}

.etwaz-lot-progress-paid {
  background: #10b981;
}

.etwaz-lot-progress-balance {
  background: #f59e0b;
}

.etwaz-lot-progress-segment-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  text-align: center;
  z-index: 2;
}

.etwaz-lot-progress-label {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.etwaz-lot-progress-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.etwaz-lot-header {
  margin-bottom: 2rem;
}

.etwaz-lot-header-info h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.etwaz-lot-company-info {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.etwaz-lot-company-logo-large {
  border-radius: 8px;
  height: 60px;
  object-fit: cover;
  width: 60px;
}

.etwaz-lot-company-name-large {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.etwaz-info-section {
  margin-bottom: 2rem;
}
.etwaz-info-section:last-child {
  margin-bottom: 0;
}

.etwaz-info-section-title {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.etwaz-info-docs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.etwaz-info-doc-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--submit);
  display: block;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  word-break: break-word;
}
.etwaz-info-doc-card:hover {
  background-color: rgba(121, 193, 65, 0.06);
  border-color: rgba(121, 193, 65, 0.4);
}

.etwaz-info-row {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.etwaz-info-row:last-child {
  margin-bottom: 0;
}

.etwaz-info-row-label {
  color: var(--submit);
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  min-width: 10rem;
}

.etwaz-info-row-content {
  align-items: flex-start;
  color: var(--text);
  display: grid;
  flex: 1;
  gap: 0.25rem 2rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  min-width: 0;
}

.etwaz-info-field {
  display: block;
}

.etwaz-info-field + .etwaz-info-field::before {
  content: none;
  margin: 0;
}

.etwaz-info-doc-link {
  color: var(--submit);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-info-doc-link:hover {
  color: var(--submit-hover, rgb(101.7047619048, 163.7619047619, 53.4380952381));
}

.etwaz-info-docs-inline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.etwaz-info-docs-inline .etwaz-info-doc-link::after {
  content: ",";
  margin-right: 0.35rem;
}

.etwaz-info-docs-inline .etwaz-info-doc-link:last-of-type::after {
  content: "";
  margin-right: 0;
}

.etwaz-info-permit-files {
  grid-column: 1/-1;
  width: 100%;
}

.etwaz-info-doc-add-btn {
  align-items: center;
  background: var(--submit);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  height: 2rem;
  justify-content: center;
  line-height: 2rem;
  padding: 0;
  text-align: center;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 2rem;
}
.etwaz-info-doc-add-btn:hover {
  background: var(--submit-hover, rgb(101.7047619048, 163.7619047619, 53.4380952381));
}

.etwaz-docs-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1.5rem;
  position: fixed;
  z-index: 10000;
}
.etwaz-docs-modal[aria-hidden=true] {
  display: none;
}

.etwaz-docs-modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
}

.etwaz-docs-modal-content {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-height: 90vh;
  max-width: 32rem;
  overflow: auto;
  position: relative;
  width: 100%;
}

.etwaz-docs-modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
.etwaz-docs-modal-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.etwaz-docs-modal-body {
  padding: 0 2rem 1.5rem;
}

.etwaz-docs-dropzone-wrapper {
  margin-bottom: 1.5rem;
}

.etwaz-docs-existing-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-docs-existing-list {
  margin-bottom: 1rem;
}

.etwaz-docs-existing-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.etwaz-docs-delete-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
}
.etwaz-docs-delete-btn:hover {
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

.etwaz-docs-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.etwaz-documents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.etwaz-document-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-document-item:hover {
  border-color: rgba(121, 193, 65, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.etwaz-document-link {
  align-items: center;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-document-link:hover {
  color: var(--submit);
}

.etwaz-document-size {
  color: var(--muted);
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .etwaz-info-row-content {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .etwaz-project-detail {
    padding-bottom: 1.5rem;
  }
  .etwaz-project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .etwaz-project-header-actions {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    order: -1;
    width: 100%;
  }
  .etwaz-project-header-title h1 {
    font-size: 1.75rem;
  }
  .etwaz-project-header-image {
    height: 60px;
    width: 90px;
  }
  .etwaz-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-lots-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .etwaz-lot-card {
    padding: 1rem;
  }
  .etwaz-lot-card-header h3 {
    font-size: 1rem;
  }
  .etwaz-lot-progress-bar {
    height: 50px;
  }
  .etwaz-lot-progress-segment-content {
    padding: 0.375rem;
  }
  .etwaz-lot-progress-label {
    font-size: 0.625rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.8125rem;
  }
  .etwaz-lot-header-info h2 {
    font-size: 1.25rem;
  }
  .etwaz-info-section-title {
    font-size: 1rem;
  }
  .etwaz-info-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .etwaz-pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .etwaz-pagination-controls {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .etwaz-project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .etwaz-project-header-info {
    align-items: center;
    flex-direction: row;
    width: 100%;
  }
  .etwaz-project-header-title-row {
    align-items: center;
    width: 100%;
  }
  .etwaz-project-price-label {
    font-size: 0.75rem;
  }
  .etwaz-price-toggle {
    height: 18px;
    width: 32px;
  }
  #price-toggle + span:before {
    height: 12px;
    width: 12px;
  }
  #price-toggle:checked + span:before {
    transform: translateX(14px);
  }
  .etwaz-project-header-title h1 {
    font-size: 1.5rem;
  }
  .etwaz-project-header-image {
    height: 50px;
    width: 75px;
  }
  .etwaz-card {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  .etwaz-collapsible-header {
    padding: 1rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 1rem;
  }
  .etwaz-collapsible-content {
    padding: 1rem;
  }
  .etwaz-info-row {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  .etwaz-info-row-label {
    font-size: 0.875rem;
    min-width: 0;
  }
  .etwaz-info-row-content {
    flex-direction: column;
    display: flex;
    font-size: 0.875rem;
    gap: 0.25rem;
  }
  .etwaz-info-field + .etwaz-info-field::before {
    content: none;
  }
  .etwaz-info-docs-inline {
    align-items: flex-start;
    flex-direction: column;
  }
  .etwaz-lots-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .etwaz-lot-card {
    padding: 0.5rem;
  }
  .etwaz-lot-card-header h3 {
    font-size: 0.9375rem;
  }
  .etwaz-lot-progress-bar {
    height: 45px;
  }
  .etwaz-lot-progress-segment-content {
    padding: 0.25rem;
  }
  .etwaz-lot-progress-label {
    font-size: 0.5625rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.75rem;
  }
  .etwaz-lot-header-info h2 {
    font-size: 1.125rem;
  }
  .etwaz-info-section-title {
    font-size: 0.9375rem;
  }
  .etwaz-info-docs-grid {
    grid-template-columns: 1fr;
  }
  .etwaz-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .etwaz-pagination-btn {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }
  .etwaz-pagination-number {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8125rem;
  }
  .etwaz-progress-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }
  .etwaz-progress-header .etwaz-card-section-header {
    justify-content: flex-start;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .etwaz-card-section-header .etwaz-progress-title {
    margin-left: 0.5rem;
  }
  .etwaz-progress-right {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .etwaz-progress-bar-wrapper {
    margin-top: 0.5rem;
  }
  .etwaz-card .etwaz-card-section-header {
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .etwaz-card .etwaz-card-section-header-inner {
    flex-wrap: wrap;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .etwaz-card-section-header-with-action {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-right: 0;
  }
  .etwaz-card .etwaz-btn-modifier {
    margin-right: 3rem;
  }
  .etwaz-progress-amount-label {
    font-size: 0.6875rem;
  }
  .etwaz-progress-market-value,
  .etwaz-progress-paid-value,
  .etwaz-progress-balance-value {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  .etwaz-project-header-title h1 {
    font-size: 1.25rem;
  }
  .etwaz-card {
    padding: 0.5rem;
  }
  .etwaz-collapsible-header {
    padding: 0.5rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 0.9375rem;
  }
  .etwaz-collapsible-content {
    padding: 0.5rem;
  }
  .etwaz-lot-progress-bar {
    height: 40px;
  }
  .etwaz-lot-progress-label {
    font-size: 0.5rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.6875rem;
  }
}
.etwaz-card-situations {
  margin: 0 auto;
  max-width: 1400px;
}

.etwaz-network-table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.etwaz-network-table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.etwaz-network-table-wrapper::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 8px;
}
.etwaz-network-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 8px;
}
.etwaz-network-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--text);
}

.etwaz-network-header {
  margin-bottom: 2rem;
}
.etwaz-network-header h1 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.etwaz-network-row {
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-network-row:hover {
  background: rgba(121, 193, 65, 0.05) !important;
}
.etwaz-network-row:active {
  background: rgba(121, 193, 65, 0.1) !important;
}

.etwaz-network-logo {
  border-radius: 8px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.etwaz-situations-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.etwaz-situations-header h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-situations-table-wrapper {
  overflow-x: auto;
}

.etwaz-situations-table {
  border-collapse: collapse;
  width: 100%;
}

.etwaz-situations-table thead {
  background: #f9fafb;
}

.etwaz-situations-table th {
  color: var(--submit);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.etwaz-situations-table tbody tr {
  border-bottom: 1px solid var(--border);
  position: relative;
}

.etwaz-situation-row {
  position: relative;
}

.etwaz-situation-row td:first-child {
  position: relative;
}

.etwaz-situation-row td:first-child::before {
  background: #f59e0b;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 3px;
}

.etwaz-situation-approved td:first-child::before {
  background: #10b981;
}

.etwaz-situation-rejected td:first-child::before {
  background: #ef4444;
}

.etwaz-situation-pending td:first-child::before {
  background: #f59e0b;
}

.etwaz-situation-row td {
  padding: 0.75rem 1rem;
  padding-left: 1.5rem;
}

.etwaz-table-label {
  color: var(--submit);
  font-weight: 600;
}

.etwaz-table-data {
  color: var(--muted);
}

.etwaz-quotes-table-wrapper {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.etwaz-quotes-table {
  border-collapse: collapse;
  width: 100%;
}

.etwaz-quotes-table thead {
  background: #f9fafb;
}

.etwaz-quotes-table th {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.etwaz-quotes-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-quotes-table tbody tr:hover {
  background: #f9fafb;
}

.etwaz-lot-table-row {
  cursor: pointer;
}
.etwaz-lot-table-row:hover {
  background: rgba(121, 193, 65, 0.05) !important;
}
.etwaz-lot-table-row:active {
  background: rgba(121, 193, 65, 0.1) !important;
}

.etwaz-quotes-table td {
  color: #9ca3af;
  padding: 0.75rem 1rem;
}
.etwaz-quotes-table td.etwaz-table-label {
  color: #9ca3af;
}

.etwaz-quotes-table-col-lot {
  width: 4rem;
}

.etwaz-quotes-table-cell-lot {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.etwaz-quotes-table-cell-lot--pending::before {
  background: #ef4444;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.etwaz-quotes-table-lot-num {
  color: #9ca3af;
  font-weight: 600;
}

.etwaz-quotes-table-cell-company {
  color: #9ca3af;
}

.etwaz-quotes-table-company {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-quotes-table-company-logo {
  border-radius: 999px;
  flex-shrink: 0;
  height: 28px;
  object-fit: cover;
  width: 28px;
}

.etwaz-quotes-table-company-avatar {
  align-items: center;
  background: #e5e7eb;
  border-radius: 999px;
  color: #9ca3af;
  display: flex;
  flex-shrink: 0;
  font-size: 0.8rem;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.etwaz-quotes-table-company-name {
  color: #9ca3af;
  font-weight: 500;
}

.etwaz-quotes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#quote-form {
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.etwaz-quote-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.etwaz-quote-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.etwaz-quote-company {
  color: var(--text);
  font-weight: 600;
}

.etwaz-quote-date {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-quote-amount {
  color: var(--text);
  font-weight: 600;
}

.etwaz-quote-link {
  color: var(--submit);
  font-size: 0.875rem;
  text-decoration: none;
}

.etwaz-quote-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .etwaz-network-header h1 {
    font-size: 1.75rem;
  }
  .etwaz-situations-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-situations-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-situations-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .etwaz-situations-table {
    min-width: 600px;
  }
  .etwaz-quotes-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .etwaz-quotes-table {
    min-width: 600px;
  }
  .etwaz-quote-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .etwaz-quote-company {
    font-size: 0.9375rem;
  }
  .etwaz-quote-date {
    font-size: 0.8125rem;
  }
  .etwaz-quote-amount {
    font-size: 0.9375rem;
  }
}
@media (max-width: 640px) {
  .etwaz-network-header h1 {
    font-size: 1.5rem;
  }
  .etwaz-network-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .etwaz-situations-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .etwaz-situations-header h2 {
    font-size: 1rem;
  }
  .etwaz-situations-table {
    min-width: 500px;
    font-size: 0.875rem;
  }
  .etwaz-situations-table th {
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem;
  }
  .etwaz-situation-row td {
    padding: 0.5rem 0.5rem;
    padding-left: 1rem;
  }
  .etwaz-quotes-table {
    min-width: 500px;
    font-size: 0.875rem;
  }
  .etwaz-quotes-table th {
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem;
  }
  .etwaz-quotes-table td {
    padding: 0.5rem 0.5rem;
  }
  .etwaz-quote-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }
  .etwaz-quote-company {
    font-size: 0.875rem;
  }
  .etwaz-quote-date {
    font-size: 0.75rem;
  }
  .etwaz-quote-amount {
    font-size: 0.875rem;
  }
  .etwaz-quote-link {
    font-size: 0.8125rem;
  }
  #quote-form {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .etwaz-network-header h1 {
    font-size: 1.25rem;
  }
  .etwaz-situations-header h2 {
    font-size: 0.9375rem;
  }
  .etwaz-situations-table {
    min-width: 450px;
    font-size: 0.8125rem;
  }
  .etwaz-situations-table th {
    font-size: 0.75rem;
    padding: 0.4375rem 0.5rem;
  }
  .etwaz-situation-row td {
    padding: 0.4375rem 0.5rem;
    padding-left: 0.875rem;
  }
  .etwaz-quotes-table {
    min-width: 450px;
    font-size: 0.8125rem;
  }
  .etwaz-quotes-table th {
    font-size: 0.75rem;
    padding: 0.4375rem 0.5rem;
  }
  .etwaz-quotes-table td {
    padding: 0.4375rem 0.5rem;
  }
}
.etwaz-alerts {
  margin: 0 auto;
  max-width: 1400px;
}

.etwaz-alerts-header {
  margin-bottom: 2rem;
}

.etwaz-alerts-title {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
}

.etwaz-alerts-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.etwaz-alerts-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.etwaz-alert-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alert-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.etwaz-alert-card-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.etwaz-alert-project-info {
  flex: 1;
}

.etwaz-alert-project-name {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.etwaz-alert-company-name {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

.etwaz-alert-status {
  flex-shrink: 0;
}

.etwaz-alert-status-badge {
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.etwaz-alert-status-pending {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.etwaz-alert-card-body {
  margin-bottom: 1.5rem;
}

.etwaz-alert-details {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.etwaz-alert-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.etwaz-alert-detail-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.etwaz-alert-detail-value {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.etwaz-alert-card-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
  .etwaz-alerts-title {
    font-size: 1.75rem;
  }
  .etwaz-alerts-subtitle {
    font-size: 0.9375rem;
  }
  .etwaz-alert-card {
    padding: 1.5rem;
  }
  .etwaz-alert-project-name {
    font-size: 1.125rem;
  }
  .etwaz-alert-company-name {
    font-size: 0.875rem;
  }
  .etwaz-alert-detail-label {
    font-size: 0.8125rem;
  }
  .etwaz-alert-detail-value {
    font-size: 0.9375rem;
  }
}
@media (max-width: 640px) {
  .etwaz-alerts-header {
    margin-bottom: 1.5rem;
  }
  .etwaz-alerts-title {
    font-size: 1.5rem;
  }
  .etwaz-alerts-subtitle {
    font-size: 0.875rem;
  }
  .etwaz-alert-card {
    padding: 1rem;
  }
  .etwaz-alert-card-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .etwaz-alert-project-name {
    font-size: 1rem;
  }
  .etwaz-alert-company-name {
    font-size: 0.8125rem;
  }
  .etwaz-alert-status-badge {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.75rem;
  }
  .etwaz-alert-card-body {
    margin-bottom: 1rem;
  }
  .etwaz-alert-details {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .etwaz-alert-detail-label {
    font-size: 0.75rem;
  }
  .etwaz-alert-detail-value {
    font-size: 0.875rem;
  }
  .etwaz-alert-card-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-alert-card-footer .etwaz-btn-secondary {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .etwaz-alerts-title {
    font-size: 1.25rem;
  }
  .etwaz-alerts-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-alert-card {
    padding: 0.5rem;
  }
  .etwaz-alert-project-name {
    font-size: 0.9375rem;
  }
  .etwaz-alert-company-name {
    font-size: 0.75rem;
  }
  .etwaz-alert-detail-label {
    font-size: 0.6875rem;
  }
  .etwaz-alert-detail-value {
    font-size: 0.8125rem;
  }
}
.etwaz-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.etwaz-toast {
  align-items: center;
  background: #ffffff;
  border-left: 4px solid;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  max-width: 400px;
  padding: 1rem 1.5rem;
  pointer-events: auto;
  transform: translateX(120%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1) ease-out;
  width: 100%;
}

.etwaz-toast.etwaz-toast-show {
  transform: translateX(0);
}

.etwaz-toast-success {
  border-left-color: var(--submit);
}

.etwaz-toast-error {
  border-left-color: #ef4444;
}

.etwaz-toast-warning {
  border-left-color: #f59e0b;
}

.etwaz-toast-info {
  border-left-color: #3b82f6;
}

.etwaz-toast-icon {
  align-items: center;
  border-radius: 9999px;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.etwaz-toast-success .etwaz-toast-icon {
  background: rgba(121, 193, 65, 0.1);
  color: var(--submit);
}

.etwaz-toast-error .etwaz-toast-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.etwaz-toast-warning .etwaz-toast-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.etwaz-toast-info .etwaz-toast-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.etwaz-toast-content {
  flex: 1;
}

.etwaz-toast-title {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.etwaz-toast-message {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-toast-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
}

.etwaz-toast-close:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .etwaz-toast-container {
    right: 1rem;
    top: 1rem;
  }
  .etwaz-toast {
    max-width: 350px;
    padding: 0.5rem 1rem;
  }
  .etwaz-toast-title {
    font-size: 0.8125rem;
  }
  .etwaz-toast-message {
    font-size: 0.8125rem;
  }
}
@media (max-width: 640px) {
  .etwaz-toast-container {
    right: 0.5rem;
    top: 0.5rem;
  }
  .etwaz-toast {
    max-width: 320px;
    padding: 0.25rem 0.5rem;
  }
  .etwaz-toast-icon {
    height: 28px;
    width: 28px;
  }
  .etwaz-toast-title {
    font-size: 0.75rem;
  }
  .etwaz-toast-message {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .etwaz-toast-container {
    left: 0.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }
  .etwaz-toast {
    max-width: 100%;
    padding: 0.25rem;
  }
  .etwaz-toast-icon {
    height: 24px;
    width: 24px;
  }
  .etwaz-toast-title {
    font-size: 0.6875rem;
  }
  .etwaz-toast-message {
    font-size: 0.6875rem;
  }
  .etwaz-toast-close {
    width: 18px;
    font-size: 1.125rem;
  }
}
.etwaz-companies-table-wrapper {
  margin: 1rem 0;
  overflow-x: auto;
  overflow-y: visible !important;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) #f9fafb;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar {
  height: 12px;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 8px;
  margin: 0.25rem;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 8px;
  border: 2px solid #f9fafb;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--text);
}
.etwaz-companies-table-wrapper .etwaz-companies-table {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td {
  position: relative;
  overflow: visible;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td .etwaz-autocomplete-wrapper {
  position: relative;
  overflow: visible;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td .etwaz-autocomplete-wrapper .etwaz-autocomplete-dropdown {
  position: absolute;
  z-index: 10001;
}

.etwaz-companies-table {
  border-collapse: collapse;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: visible;
  table-layout: auto;
}

.etwaz-companies-table thead {
  background: var(--hero);
}

.etwaz-companies-table th {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  white-space: nowrap;
}

.etwaz-companies-table td {
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem;
  vertical-align: middle;
  position: relative;
  overflow: visible;
}

.etwaz-companies-table th:nth-child(1),
.etwaz-companies-table td:nth-child(1) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(2),
.etwaz-companies-table td:nth-child(2) {
  min-width: 180px;
}

.etwaz-companies-table th:nth-child(3),
.etwaz-companies-table td:nth-child(3) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(4),
.etwaz-companies-table td:nth-child(4) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(5),
.etwaz-companies-table td:nth-child(5) {
  min-width: 180px;
}

.etwaz-companies-table th:nth-child(6),
.etwaz-companies-table td:nth-child(6) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(7),
.etwaz-companies-table td:nth-child(7) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(8),
.etwaz-companies-table td:nth-child(8) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(9),
.etwaz-companies-table td:nth-child(9) {
  min-width: 50px;
  width: 50px;
  text-align: center;
}

.etwaz-companies-table tbody {
  overflow: visible;
  position: relative;
}

.etwaz-companies-table tbody tr {
  overflow: visible;
  position: relative;
}

.etwaz-companies-table tbody tr:hover {
  background: #f9fafb;
}

.etwaz-companies-table .etwaz-input {
  background: var(--input-bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-companies-table .etwaz-input:focus {
  border-color: var(--submit);
  box-shadow: 0 0 0 3px rgba(121, 193, 65, 0.1);
  outline: none;
}

.etwaz-autocomplete-wrapper {
  position: relative;
  z-index: 1;
}

.etwaz-autocomplete-dropdown {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: visible;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10001;
  margin-top: 0.25rem;
}
.etwaz-autocomplete-dropdown[style*="position: fixed"] {
  position: fixed !important;
  z-index: 100000 !important;
  margin-top: 0;
}

.etwaz-companies-table td {
  position: relative;
  z-index: 0;
}
.etwaz-companies-table td .etwaz-autocomplete-wrapper {
  position: relative;
  z-index: 1;
}
.etwaz-companies-table td .etwaz-autocomplete-wrapper .etwaz-autocomplete-dropdown {
  position: absolute;
  z-index: 10001;
}

.etwaz-autocomplete-dropdown.etwaz-autocomplete-show {
  display: block;
}

.etwaz-autocomplete-item {
  cursor: pointer;
  padding: 1rem;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-autocomplete-item:hover {
  background: #f9fafb;
}
.etwaz-autocomplete-item.etwaz-autocomplete-selected {
  background: rgba(121, 193, 65, 0.1);
}

.etwaz-autocomplete-item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.etwaz-autocomplete-item-details {
  color: var(--muted);
  font-size: 0.75rem;
}

.etwaz-btn-add-row {
  background: var(--submit);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-add-row:hover {
  background: #5fa83d;
  transform: translateY(-1px);
}

.etwaz-actions {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.etwaz-actions > .etwaz-btn-secondary,
.etwaz-actions > .etwaz-submit {
  min-width: 160px;
  text-align: center;
}

.etwaz-actions.etwaz-actions-inline {
  flex-wrap: nowrap;
}

.etwaz-actions.etwaz-actions-inline > .etwaz-btn-secondary,
.etwaz-actions.etwaz-actions-inline > .etwaz-submit {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 640px) {
  .etwaz-actions.etwaz-actions-inline {
    flex-wrap: nowrap;
  }
}
@media (max-width: 480px) {
  .etwaz-actions.etwaz-actions-inline {
    flex-direction: row;
  }
  .etwaz-actions.etwaz-actions-inline > .etwaz-btn-secondary,
  .etwaz-actions.etwaz-actions-inline > .etwaz-btn-danger,
  .etwaz-actions.etwaz-actions-inline > .etwaz-submit {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem !important;
  }
  .etwaz-actions.etwaz-actions-archive-stack {
    flex-wrap: wrap;
  }
  .etwaz-actions.etwaz-actions-archive-stack #archive-project-btn {
    flex: 1 1 100%;
    order: 1;
    width: 100%;
  }
  .etwaz-actions.etwaz-actions-archive-stack .etwaz-btn-secondary {
    order: 2;
  }
  .etwaz-actions.etwaz-actions-archive-stack .etwaz-submit {
    order: 3;
  }
}
.etwaz-btn-remove-row {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
}
.etwaz-btn-remove-row:hover {
  color: #dc2626;
}

@media (max-width: 768px) {
  .etwaz-companies-table-wrapper::-webkit-scrollbar {
    height: 14px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
    min-width: 40px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb:active {
    background: var(--text);
  }
  .etwaz-companies-table {
    font-size: 0.8125rem;
    min-width: 1200px;
    width: 100%;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 130px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 170px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 170px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.5rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.625rem;
  }
  .etwaz-autocomplete-dropdown {
    max-height: 250px;
  }
  .etwaz-autocomplete-item {
    padding: 0.5rem;
  }
  .etwaz-autocomplete-item-name {
    font-size: 0.875rem;
  }
  .etwaz-autocomplete-item-details {
    font-size: 0.6875rem;
  }
}
@media (max-width: 640px) {
  .etwaz-companies-table-wrapper::-webkit-scrollbar {
    height: 10px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
    border: 1px solid #f9fafb;
    min-width: 30px;
  }
  .etwaz-companies-table {
    font-size: 0.75rem;
    min-width: 1000px;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 150px;
  }
  .etwaz-companies-table th:nth-child(3),
  .etwaz-companies-table td:nth-child(3) {
    min-width: 100px;
  }
  .etwaz-companies-table th:nth-child(4),
  .etwaz-companies-table td:nth-child(4) {
    min-width: 100px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 150px;
  }
  .etwaz-companies-table th:nth-child(6),
  .etwaz-companies-table td:nth-child(6) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(7),
  .etwaz-companies-table td:nth-child(7) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(8),
  .etwaz-companies-table td:nth-child(8) {
    min-width: 100px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.25rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }
  .etwaz-autocomplete-dropdown {
    max-height: 200px;
  }
  .etwaz-autocomplete-item {
    padding: 0.5rem;
  }
  .etwaz-autocomplete-item-name {
    font-size: 0.8125rem;
  }
  .etwaz-autocomplete-item-details {
    font-size: 0.625rem;
  }
  .etwaz-btn-add-row {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .etwaz-companies-table {
    font-size: 0.6875rem;
    min-width: 900px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.25rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.4375rem;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 140px;
  }
  .etwaz-companies-table th:nth-child(3),
  .etwaz-companies-table td:nth-child(3) {
    min-width: 90px;
  }
  .etwaz-companies-table th:nth-child(4),
  .etwaz-companies-table td:nth-child(4) {
    min-width: 90px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 140px;
  }
  .etwaz-companies-table th:nth-child(6),
  .etwaz-companies-table td:nth-child(6) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(7),
  .etwaz-companies-table td:nth-child(7) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(8),
  .etwaz-companies-table td:nth-child(8) {
    min-width: 90px;
  }
}
.etwaz-cookie-banner {
  background: #ffffff;
  border-top: 3px solid var(--submit);
  bottom: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  left: 0;
  opacity: 0;
  padding: 2rem;
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
}
.etwaz-cookie-banner.etwaz-cookie-banner-visible {
  opacity: 1;
  transform: translateY(0);
}

.etwaz-cookie-banner-content {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}
@media (max-width: 640px) {
  .etwaz-cookie-banner-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.etwaz-cookie-banner-text {
  flex: 1;
}

.etwaz-cookie-banner-title {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.etwaz-cookie-banner-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.etwaz-cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}
@media (max-width: 480px) {
  .etwaz-cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

.etwaz-cookie-btn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .etwaz-cookie-btn {
    width: 100%;
  }
}

.etwaz-cookie-btn-accept-all {
  background: var(--submit);
  color: #ffffff;
}
.etwaz-cookie-btn-accept-all:hover {
  background: var(--submit-hover);
  transform: translateY(-2px);
}

.etwaz-cookie-btn-customize {
  background: #ffffff;
  border: 2px solid var(--border);
  color: var(--text);
}
.etwaz-cookie-btn-customize:hover {
  background: #f9fafb;
  border-color: var(--submit);
}

.etwaz-cookie-btn-reject {
  background: #f9fafb;
  color: var(--muted);
}
.etwaz-cookie-btn-reject:hover {
  background: #e5e7eb;
  color: var(--text);
}

.etwaz-cookie-btn-save {
  background: var(--submit);
  color: #ffffff;
}
.etwaz-cookie-btn-save:hover {
  background: var(--submit-hover);
}

.etwaz-cookie-settings-btn {
  align-items: center;
  background: var(--submit);
  border: none;
  border-radius: 9999px;
  bottom: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  left: 2rem;
  position: fixed;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 50px;
  z-index: 9998;
}
.etwaz-cookie-settings-btn:hover {
  background: var(--submit-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.etwaz-cookie-settings-btn svg {
  height: 20px;
  width: 20px;
}
@media (max-width: 480px) {
  .etwaz-cookie-settings-btn {
    bottom: 1rem;
    height: 45px;
    left: 1rem;
    width: 45px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 18px;
    width: 18px;
  }
}

.etwaz-cookie-modal-content {
  max-width: 700px;
}

.etwaz-cookie-modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 2rem;
}

.etwaz-cookie-modal-intro {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.etwaz-cookie-category {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-cookie-category:hover {
  border-color: var(--submit);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.etwaz-cookie-category:last-child {
  margin-bottom: 0;
}

.etwaz-cookie-category-header {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.etwaz-cookie-category-info {
  flex: 1;
}

.etwaz-cookie-category-title {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.etwaz-cookie-category-description {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.etwaz-switch-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.etwaz-cookie-modal-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.etwaz-cookie-policy-link {
  color: var(--submit);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-cookie-policy-link:hover {
  color: var(--submit-hover);
  text-decoration: underline;
}

.etwaz-cookie-modal-actions {
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
}
@media (max-width: 480px) {
  .etwaz-cookie-modal-actions {
    flex-direction: column-reverse;
  }
  .etwaz-cookie-modal-actions .etwaz-cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .etwaz-cookie-banner {
    padding: 1.5rem;
  }
  .etwaz-cookie-banner-title {
    font-size: 1.125rem;
  }
  .etwaz-cookie-banner-description {
    font-size: 0.875rem;
  }
  .etwaz-cookie-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
  .etwaz-cookie-modal-body {
    padding: 1.5rem;
    max-height: 65vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.875rem;
  }
  .etwaz-cookie-category {
    padding: 1rem;
  }
  .etwaz-cookie-category-title {
    font-size: 1rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-modal-actions {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .etwaz-cookie-banner {
    padding: 1rem;
  }
  .etwaz-cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }
  .etwaz-cookie-banner-title {
    font-size: 1rem;
  }
  .etwaz-cookie-banner-description {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-banner-actions {
    width: 100%;
  }
  .etwaz-cookie-btn {
    font-size: 0.8125rem;
    padding: 0.5625rem 1rem;
  }
  .etwaz-cookie-modal-body {
    padding: 1rem;
    max-height: 70vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-category {
    padding: 0.5rem;
  }
  .etwaz-cookie-category-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-cookie-category-title {
    font-size: 0.9375rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.75rem;
  }
  .etwaz-cookie-modal-actions {
    padding: 0.5rem 1rem;
    flex-direction: column-reverse;
  }
  .etwaz-cookie-settings-btn {
    bottom: 1rem;
    left: 1rem;
    height: 44px;
    width: 44px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 18px;
    width: 18px;
  }
}
@media (max-width: 480px) {
  .etwaz-cookie-banner {
    padding: 0.5rem;
  }
  .etwaz-cookie-banner-title {
    font-size: 0.9375rem;
  }
  .etwaz-cookie-banner-description {
    font-size: 0.75rem;
  }
  .etwaz-cookie-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }
  .etwaz-cookie-modal-body {
    padding: 0.5rem;
    max-height: 75vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.75rem;
  }
  .etwaz-cookie-category {
    padding: 0.25rem;
  }
  .etwaz-cookie-category-title {
    font-size: 0.875rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.6875rem;
  }
  .etwaz-cookie-settings-btn {
    bottom: 0.5rem;
    left: 0.5rem;
    height: 40px;
    width: 40px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 16px;
    width: 16px;
  }
}
.etwaz-error-page {
  align-items: center;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}

.etwaz-error-content {
  max-width: 600px;
  text-align: center;
}

.etwaz-error-code {
  color: #2f3b45;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.etwaz-error-title {
  color: #111827;
  font-size: 2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.etwaz-error-message {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.etwaz-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.etwaz-error-btn {
  border-radius: 8px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.etwaz-error-btn-primary {
  background: var(--submit, #96c10f);
  box-shadow: 0 2px 4px rgba(150, 193, 15, 0.2);
  color: white;
}
.etwaz-error-btn-primary:hover {
  background: #6ba836;
  box-shadow: 0 4px 6px rgba(150, 193, 15, 0.3);
}

.etwaz-error-btn-secondary {
  background: transparent;
  border: 2px solid #e5e7eb;
  color: #6b7280;
}
.etwaz-error-btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/*# sourceMappingURL=app.css.map */
