/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo svg {
  width: 38px;
  height: 20px;
}

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

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}
.dt-buttons {
    gap: 1rem;
}

/* Mysterious dark global polish */
.dark-style body {
  background: radial-gradient(circle at top right, #1f1b39 0%, #121227 45%, #0b0b16 100%);
}

.dark-style .card,
.dark-style .modal-content,
.dark-style .dropdown-menu,
.dark-style .list-group-item,
.dark-style .table,
.dark-style .bg-white {
  background-color: #15152b !important;
  color: #e3e6ff;
  border-color: rgba(155, 132, 255, 0.16) !important;
}

.dark-style .navbar,
.dark-style .layout-navbar,
.dark-style .menu-vertical,
.dark-style .layout-menu,
.dark-style .footer {
  background-color: #101022 !important;
}

.dark-style .btn-primary {
  background: linear-gradient(135deg, #6b5cff 0%, #3d9cff 100%);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(61, 156, 255, 0.25);
}

.dark-style a {
  color: #8aa8ff;
}

.dark-style a:hover {
  color: #b5c7ff;
}

/* Warning tone adjustments for dark admin tables/cards */
.dark-style .table-warning,
.dark-style .table-warning > th,
.dark-style .table-warning > td,
.dark-style .table > :not(caption) > * > .table-warning {
  background-color: rgba(255, 193, 7, 0.14) !important;
  color: #ffe8a3 !important;
  border-color: rgba(255, 193, 7, 0.28) !important;
}

.dark-style .alert-warning {
  background-color: rgba(255, 193, 7, 0.16) !important;
  color: #ffe8a3 !important;
  border-color: rgba(255, 193, 7, 0.34) !important;
}

.dark-style .bg-warning,
.dark-style .text-bg-warning,
.dark-style .badge.bg-warning {
  background-color: #8a6912 !important;
  color: #fff4cf !important;
}

.dark-style .btn-warning {
  background-color: #a87c11 !important;
  border-color: #c29318 !important;
  color: #1b1402 !important;
}
