/*!
 * Vuexy - Demo Styles
 * Additional styles for demo pages and components
 */

/* Demo specific styles */
.demo {
  /* Demo class for special styling */
}

/* App brand */
.app-brand {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.app-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--bs-heading-color);
}

.app-brand-logo {
  margin-right: 0.75rem;
}

.app-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Layout menu toggle */
.layout-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--bs-body-color);
  text-decoration: none;
}

@media (max-width: 1199.98px) {
  .layout-menu-toggle {
    display: flex;
  }
}

/* Page title */
.page-title {
  margin-bottom: 1.5rem;
}

.page-heading {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bs-heading-color);
}

.breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li {
  color: var(--bs-body-color);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--bs-border-color);
}

/* Content actions */
.content-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.content-footer {
  margin-top: auto;
  padding: 1.5rem;
  background: #fff;
  border-top: 1px solid var(--bs-border-color);
}

.footer {
  background: transparent;
}

/* Divider */
.divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bs-border-color);
}

.divider-text {
  position: relative;
  background: var(--bs-body-bg);
  padding: 0 1rem;
  color: var(--bs-body-color);
  font-size: 0.875rem;
}

/* Authentication pages */
.authentication-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f9;
  padding: 2rem 1rem;
}

.authentication-inner {
  width: 100%;
  max-width: 400px;
}

.authentication-basic .card {
  border: none;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}

/* Form password toggle */
.form-password-toggle {
  position: relative;
}

.form-password-toggle .input-group-text {
  cursor: pointer;
  user-select: none;
}

/* Input group merge */
.input-group-merge .input-group-text {
  border-right: none;
}

.input-group-merge .form-control {
  border-left: none;
}

.input-group-merge .form-control:focus {
  border-left: 1px solid var(--bs-link-color);
}

/* Alert styles */
.alert {
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
}

.alert-info {
  background-color: rgba(3, 195, 236, 0.1);
  color: #03c3ec;
}

.alert-success {
  background-color: rgba(113, 221, 55, 0.1);
  color: #71dd37;
}

.alert-warning {
  background-color: rgba(255, 171, 0, 0.1);
  color: #ffab00;
}

.alert-danger {
  background-color: rgba(255, 62, 29, 0.1);
  color: #ff3e1d;
}

/* Button groups */
.btn-group {
  display: flex;
  gap: 0.5rem;
}

.btn-group .btn {
  flex: 1;
}

/* Responsive utilities */
@media (max-width: 575.98px) {
  .authentication-inner {
    max-width: 100%;
  }
  
  .page-heading {
    font-size: 1.5rem;
  }
  
  .content-wrapper {
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .layout-menu,
  .layout-navbar,
  .content-footer {
    display: none !important;
  }
  
  .layout-container {
    flex-direction: column;
  }
  
  .layout-page {
    width: 100%;
  }
  
  .content-wrapper {
    padding: 0;
  }
}
