@charset "UTF-8";

/* apps/frontend-interno/src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #f7faf8;
  color: #1a2e26;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.ambient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.sphere-top-left {
  top: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background:
    radial-gradient(
      circle,
      rgba(16, 185, 129, 0.22) 0%,
      rgba(52, 211, 153, 0) 70%);
  animation: floatSphere 14s ease-in-out infinite alternate;
}
.sphere-bottom-right {
  bottom: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(
      circle,
      rgba(0, 135, 90, 0.18) 0%,
      rgba(110, 231, 183, 0) 70%);
  animation: floatSphere 18s ease-in-out infinite alternate-reverse;
}
@keyframes floatSphere {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, -20px) scale(1.06);
  }
  100% {
    transform: translate(-15px, 15px) scale(0.96);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.status-pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 168, 107, 0.35);
  animation: pulse 2s infinite ease-out;
}
.cargo-access-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #d4ede1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cargo-access-card:hover {
  border-color: #00a86b;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0, 168, 107, 0.12);
}
.cargo-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cargo-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.1rem 0.5rem;
  border-radius: 5px;
  text-transform: uppercase;
}
.cargo-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #123023;
}
.cargo-arrow {
  font-size: 1.1rem;
  color: #00a86b;
  font-weight: 700;
}
.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      #007a50 0%,
      #00a86b 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(0, 168, 107, 0.4);
  transition: all 0.2s ease;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(0, 168, 107, 0.5);
}
.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-logout {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1.5px solid #d9ece2;
  border-radius: 10px;
  background: #ffffff;
  color: #4a6b5d;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-logout:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}
.error-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.82rem;
  margin-bottom: 1.15rem;
}
app-root {
  display: block;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
app-root:has(.app-shell--locked) {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  min-height: 140px;
  max-height: 260px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.wave-svg {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: -7px;
  min-height: 140px;
  max-height: 260px;
}
.wave-layer {
  animation: moveForever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.wave-layer-1 {
  fill: rgba(0, 168, 107, 0.18);
  animation-delay: -2s;
  animation-duration: 9s;
}
.wave-layer-2 {
  fill: rgba(16, 185, 129, 0.28);
  animation-delay: -4s;
  animation-duration: 13s;
}
.wave-layer-3 {
  fill: rgba(52, 211, 153, 0.4);
  animation-delay: -6s;
  animation-duration: 17s;
}
.wave-layer-4 {
  fill: #e1f5ec;
  animation-delay: -8s;
  animation-duration: 23s;
}
@keyframes moveForever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  50% {
    transform: translate3d(85px, 0, 0);
  }
  100% {
    transform: translate3d(-90px, 0, 0);
  }
}
@media (max-width: 520px) {
  .waves-container {
    height: 150px;
  }
}
.shell-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.shell-topbar {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d4ede1;
  box-shadow: 0 4px 16px -4px rgba(0, 80, 50, 0.05);
}
.topbar-left,
.topbar-brand,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  background: #f0faf5;
  border: 1px solid #c2eed9;
  border-radius: 8px;
  cursor: pointer;
}
.btn-hamburger:hover {
  background: #e6f7ef;
}
.hamburger-line {
  width: 18px;
  height: 2px;
  background: #007a50;
  border-radius: 2px;
}
.brand-logo {
  height: 30px;
  width: auto;
}
.user-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: #f0faf5;
  border: 1px solid #c2eed9;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #007a50;
}
.user-id-text {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}
.btn-topbar-logout {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
}
.btn-topbar-logout:hover {
  background: #fef2f2;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 48, 35, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease-out;
}
.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 310px;
  max-width: 85vw;
  z-index: 100;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 24px rgba(0, 75, 57, 0.14);
  animation: slideInLeft 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 0.85rem;
  border-bottom: 1px solid #d4ede1;
}
.drawer-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a6b5d;
}
.drawer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #123023;
  margin: 0.1rem 0 0;
}
.btn-close-drawer {
  font-size: 1.5rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border: 1px solid #d4ede1;
  border-radius: 8px;
  background: #fff;
  color: #4a6b5d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-close-drawer:hover {
  background: #fef2f2;
  color: #dc2626;
}
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem;
}
.nav-section-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7b998b;
  margin: 0 0 0.75rem 0.2rem;
}
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.drawer-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d4ede1;
  text-decoration: none;
  color: #123023;
  transition: all 0.15s ease;
}
.drawer-nav-item:hover {
  background: #f0faf5;
  border-color: #00a86b;
  transform: translateX(3px);
}
.drawer-nav-item.active-item {
  background: #e6f7ef;
  border-color: #00a86b;
  font-weight: 700;
  color: #007a50;
}
.drawer-footer {
  padding: 1rem 1.15rem;
  border-top: 1px solid #d4ede1;
  background: #f0faf5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-drawer-logout {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fff;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
}
.btn-drawer-logout:hover {
  background: #fef2f2;
}
.shell-main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.shell-main--wide {
  max-width: none;
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.user-menu-wrapper {
  position: relative;
}
.btn-user-avatar-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.65rem 0.25rem 0.35rem;
  background: #f0faf5;
  border: 1px solid #c2eed9;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.btn-user-avatar-trigger:hover,
.btn-user-avatar-trigger[aria-expanded=true] {
  background: #e6f7ef;
  border-color: #00a86b;
}
.user-avatar-circle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #007a50 0%,
      #00a86b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.avatar-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  border: 1.5px solid #ffffff;
}
.user-name-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #007a50;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}
.chevron-icon {
  color: #4a6b5d;
  transition: transform 0.2s ease;
}
.chevron-icon.open {
  transform: rotate(180deg);
}
.dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: transparent;
}
.user-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #ffffff;
  border: 1px solid #d4ede1;
  border-radius: 12px;
  box-shadow: 0 10px 30px -4px rgba(0, 75, 57, 0.15);
  z-index: 100;
  overflow: hidden;
  animation: fadeIn 0.15s ease-out;
}
.dropdown-user-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: #f0faf5;
}
.dropdown-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #007a50 0%,
      #00a86b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-user-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dropdown-user-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #123023;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: monospace;
}
.dropdown-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #007a50;
  margin-top: 0.1rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}
.dropdown-divider {
  height: 1px;
  background: #e6f7ef;
}
.dropdown-actions {
  display: flex;
  flex-direction: column;
  padding: 0.35rem;
}
.dropdown-action-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a2e26;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  transition: all 0.15s ease;
  font-family: inherit;
}
.dropdown-action-item:hover {
  background: #f0faf5;
  color: #007a50;
}
.dropdown-action-item.logout-item {
  color: #dc2626;
  padding: 0.6rem 1rem 0.75rem;
  border-radius: 0;
}
.dropdown-action-item.logout-item:hover {
  background: #fef2f2;
}
.profile-tabs-nav {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid #d4ede1;
  overflow-x: auto;
}
.profile-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a6b5d;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  font-family: inherit;
}
.profile-tab-btn:hover {
  background: #f0faf5;
  color: #007a50;
}
.profile-tab-btn.active {
  background: #007a50;
  color: #ffffff;
  box-shadow: 0 4px 12px -2px rgba(0, 122, 80, 0.35);
}
.profile-tab-btn.active svg {
  stroke: #ffffff;
}
.password-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #123023;
  text-transform: uppercase;
}
.form-field input {
  padding: 0.65rem 0.85rem;
  border: 1px solid #c2eed9;
  border-radius: 8px;
  background: #f0faf5;
  font-size: 0.88rem;
  color: #1a2e26;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}
.form-field input:focus {
  border-color: #00a86b;
  background: #ffffff;
}
.password-requirements {
  font-size: 0.72rem;
  color: #4a6b5d;
  line-height: 1.4;
  margin: 0;
}
.btn-save-password {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  background: #00a86b;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-save-password:hover {
  background: #007a50;
}
.password-alert-success {
  padding: 0.75rem 1rem;
  background: #e6f7ef;
  border: 1px solid #c2eed9;
  border-radius: 8px;
  color: #007a50;
  font-size: 0.8rem;
  font-weight: 600;
}
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #f0faf5;
  border: 1px solid #d4ede1;
  border-radius: 10px;
}
.activity-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.activity-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6f7ef;
  color: #00a86b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.activity-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #123023;
}
.activity-meta {
  font-size: 0.72rem;
  color: #4a6b5d;
}
.activity-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: #d1fae5;
  color: #047857;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
