:root {
  --primary-color: #0d3b66;
  --secondary-color: #fafafa;
}

html,
body {
  min-height: 100%;
}

body {
  background-color: #eef2f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrapper {
  flex: 1;
}

.login-container-width {
  max-width: 420px;
  margin-top: 8vh;
}

.login-card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-logo {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.app-shell {
  padding: 20px 30px;
}

.header-logo {
  height: 40px;
  width: auto;
  margin-right: 20px;
}

.header-bar {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.card-custom {
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.table-container {
  overflow-x: auto;
  min-height: 50vh;
}

.hidden-col {
  display: none !important;
}

table {
  font-size: 0.85rem;
}

table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.table-dark {
  --bs-table-bg: var(--primary-color);
  --bs-table-striped-bg: #174d7a;
  --bs-table-hover-bg: #1d5a8d;
  color: #fff;
}

.not-column-header {
  min-width: 300px !important;
}

.not-input-field {
  min-width: 280px !important;
  transition: min-width 0.2s ease;
}

.not-input-field:focus {
  min-width: 400px !important;
  position: relative;
  z-index: 10;
}

.loader {
  display: none;
  margin-left: 10px;
}

.loader.is-visible {
  display: inline-block;
}

.primary-button {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.primary-button:hover,
.primary-button:focus {
  background-color: #082e50;
  border-color: #082e50;
}

.primary-text {
  color: var(--primary-color);
}

.page-size-select {
  width: auto;
}

.footer {
  background-color: transparent;
  color: #6c757d;
  font-size: 0.85rem;
  padding: 15px 0;
  font-weight: 500;
}

.log-date {
  white-space: nowrap;
}

.cell-break-word {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.status-pill {
  min-width: 72px;
}

@media (max-width: 768px) {
  .app-shell {
    padding: 12px;
  }

  .header-bar {
    padding: 14px;
  }

  .not-input-field,
  .not-input-field:focus {
    min-width: 220px !important;
  }
}
