@import url('fonts.css');

/* Custom overrides for nobleUI theme */

/* Icon sizes */
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

/* Button icon styles */
.btn-icon-prepend {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}

.btn-icon-text {
  display: inline-flex;
  align-items: center;
}


/* Custom primary color override */
:root {
  --bs-primary: #29e2ff;
  --bs-primary-rgb: 41, 226, 255;
  --bs-primary-dark: #0095ac;
}

/* Force dark theme globally */
body, html {
  background-color: #0f0f0f !important;
  color: #ffffff !important;
}

/* Override Bootstrap text colors */
.text-muted {
  color: #cccccc !important;
}

.text-secondary {
  color: #aaaaaa !important;
}

/* Form improvements */
.form-group {
  margin-bottom: 1rem;
}

/* Modal improvements */
.modal-content {
  border: 1px solid var(--bs-border-color);
}

.modal-header {
  border-bottom: 1px solid var(--bs-border-color);
}

.modal-footer {
  border-top: 1px solid var(--bs-border-color);
}

/* Alert improvements */
.alert {
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-info {
  background-color: rgba(41, 226, 255, 0.1);
  border-color: rgba(41, 226, 255, 0.2);
  color: #29e2ff;
}

/* Button improvements */
.btn-primary {
  background-color: #29e2ff !important;
  border-color: #29e2ff !important;
  color: #000000 !important;
}

.btn-primary:hover {
  background-color: #0095ac !important;
  border-color: #0095ac !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  border-color: #29e2ff !important;
  color: #29e2ff !important;
}

.btn-outline-primary:hover {
  background-color: #29e2ff !important;
  border-color: #29e2ff !important;
  color: #000000 !important;
}

/* Table improvements */
.table-hover tbody tr:hover {
  background-color: rgba(41, 226, 255, 0.05);
}

/* Custom spacing */
.pb-3px {
  padding-bottom: 3px;
}

/* Login page specific styles */
.login-container {
  max-width: 400px;
  margin: 10% auto;
  padding: 3rem;
  border-radius: 0.75rem;
  background-color: #1f1f1f;
  border: 1px solid var(--bs-border-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Form spacing improvements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}


/* Responsive improvements */
@media (max-width: 768px) {
  .btn-icon-text .btn-icon-prepend {
    margin-right: 0;
  }
  
  .btn-icon-text span {
    display: none;
  }
  
  .d-flex.gap-1 {
    gap: 0.25rem !important;
  }
  
  .d-flex.gap-2 {
    gap: 0.5rem !important;
  }
}

/* Breadcrumb styles */
.breadcrumb {
  background-color: transparent;
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #6c757d;
  font-weight: bold;
}

.breadcrumb-item a {
  color: #6f42c1;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #5a2d91;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #495057;
  font-weight: 500;
}

/* Custom utilities */
.w-200px {
  width: 200px;
}

