/* Custom theme overrides */

/* Dark navy blue color for sidebar */
:root {
  --navy-dark: #071330;
  --navy-darker: #040d1f;
}

/* Sidebar background color change */
body .sidebar,
.sidebar,
#sidebar {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%) !important;
  background-color: var(--navy-dark) !important;
}

/* Hide the text in the sidebar logo */
.navbar-brand span {
  display: none;
}

/* Adjust logo spacing since text is gone */
.navbar-brand img {
  margin-right: 0;
}

/* Login page styling */
.auth-container {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 450px;
  width: 100%;
}

.auth-header {
  background-color: var(--navy-dark);
  color: white;
  border-bottom: none;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  padding: var(--spacing-6);
  text-align: center;
}

.auth-header img {
  height: 60px;
  margin-bottom: var(--spacing-4);
}

.auth-body {
  padding: var(--spacing-6);
}

.auth-footer {
  background-color: var(--neutral-100);
  border-top: 1px solid var(--neutral-300);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: var(--spacing-4);
}
