body {
    background-color: #0A0F1C !important;
    color: #D4DCE9;
}

label {
    display: block;
}

.nav-item > .active {
    background: #182e3d !important;
    border-radius: 0.5rem;
    padding-left: 5px;
    padding-right: 5px;
}

#sidebar, .navbar {
    background-color: #0a0f1c !important;
}

#sidebar ul > li {
    border-radius: 0.5rem;
    margin-top: 2px;
    margin-bottom: 2px;
}

#sidebar ul > li:hover {
    background-color: #182e3d;
}

#sidebar ul > .active {
    background-color: #182e3d;
}
.navbar {
    margin-bottom: 0px !important;
}

.divider {
  width: 1px;
  background: #0D4F66;
}

.custom-card {
    padding: 20px !important;
    border-radius: 16px !important;
    background: #0F1524;
    border: 1px solid #0D4F66;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.custom-bg, .custom-bg:focus, .custom-bg:disabled {
    /* background: linear-gradient(86.09deg, #0C111D 69.31%, #202E4E 105.71%) !important; */
    background: #1B2440;
    border: 1px solid #0D4F66 !important;
    color: #D4DCE9 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #D4DCE9 !important;
}

.custom-link {
    color: #D4DCE9 !important;
    text-decoration: underline !important;
}

a {
    text-decoration: none;
}

a.custom-link:hover {
    color: #FFFFFF !important;
    text-decoration: underline !important;
}
.btn {
    font-size: 14px !important;
    border: none !important;
    border-radius: 100px !important;
    font-weight: 600;
}
.btn.btn-primary {
    color: #000000 !important;
    background-color: #66DEFB !important;
}

.btn.btn-primary:hover {
    color: #000000 !important;
    background-color: #D5F7FF !important;
}

.btn.btn-secondary {
    border: 2px solid #DEEFF3 !important;
    color: #FAF8F8 !important;
    background-color: #0F1524 !important;
}

.btn.btn-secondary:hover {
    border: 2px solid #DEEFF3 !important;
    color: #FAF8F8 !important;
    background-color: #3F4450 !important;
}

.form-check-input {
    cursor: pointer !important;
    background-color: #1B2440 !important;
    border: 1px solid #0D4F66 !important;
}

.form-check-input:checked {
  background-color: #1B2440 !important;
  border: 1px solid #0D4F66 !important;
}

.form-control:focus, .form-select:focus, .form-check-input:focus, .btn:focus {
  box-shadow: none;
  outline: none;
}

input::placeholder {
    color: #D4DCE9 !important;
    opacity: 1 !important; 
}

.fade {
    background-color: #0A0F1C;
}
.modal-dialog-centered {
    max-width: 75%;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.modal-content {
    background: #111D30;
    border: 1px solid #0D4F66;
    color: #FFFFFF;
}
.modal-header {
    border: none;
}
.badge {
    height: min-content;
    border-radius: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #000000 !important;
    font-weight: 500;
}
hr {
    color: #0D4F66;
}
.row>* {
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.accordion-item {
    overflow: hidden;
    border: none;
    border-radius: 0 !important;
}
.accordion-header {
    overflow: hidden;
    border: none;
    border-radius: 0 !important;
}
.accordion-button {
    background: #0F1524;
    font-weight: 400;
    font-size: 16px;
    color: white !important;
    border-bottom: 1px solid #2C596B;
    border-radius: 0 !important;
}
.accordion-body {
    background: #0F1524;
    font-weight: 400;
    font-size: 14px;
    color: #D4DCE9 !important;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #0F1524 !important;
}

.accordion-button::after {
  filter: invert(1);
}

.container {
    background: #0E1322; 
    padding: 30px; 
    border: 1px solid #31384F; 
    border-radius: 40px
}

.custom-tabs > .nav-item > .active {
    background: none !important;
    border-radius: 0 !important;
    padding: 8px 16px !important;
}


.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;      
    background-color: #FFFFFF;   
    border: none;
    margin: 0 5px;            
    transition: background-color 0.3s;
}

#content {
    padding-right: 10px;
}

.custom-indicators button.active {
    background-color: #66DEFB;
}

.container {
    height: 100% !important;
}

.dropdown-menu {
    background: #0A0F1C !important;
    border: 1px solid #182E3D !important;
    color: #FFFFFF !important;
}

.dropdown-item {
    color: #D4DCE9 !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #D4DCE9 !important;
    background-color: #182E3D !important;
}

.dropdown-toggle::after {
    margin-right: 6px; 
}

/* CARD SLIDER */
.card-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.card-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.card-item {
  flex: 0 0 calc(33.33% - 10px);
  padding: 10px;
}

@media (max-width: 992px) {
  .card-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .card-item {
    flex: 0 0 calc(100% - 10px);
  }
}

.card-item .card {
  transition: transform 0.3s, box-shadow 0.3s;
}

