@charset "UTF-8";
html{
  max-width: 1200px;
}
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.body-theme {
  background-color: #0d1d33;
  font-family: 'Calibri', 'Arial', sans-serif;
  font-size: 14px;
  color: #ffeac5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.soft-shadow {
  box-shadow: 1px 1px 4px #000000;
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #16325c;
}

::-webkit-scrollbar-thumb {
  background-color: #0086b5;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d1d33;
}

.pagination .page-link {
  background: none;
  border: none;
  color: #ffeac5 !important;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 0;
}
.pagination .page-item.active .page-link {
  background-color: transparent;
  color: #ffeac5 !important;
}
.page-item.disabled .page-link {
  background: none;
  color: #6c757d !important;
  border: none;
  cursor: not-allowed;
}

/* BUTTON STYLE */

.btn-blue-dark {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #ffeac5;
  background: linear-gradient(180deg,rgba(0, 35, 73, 1) 0%, rgba(22, 50, 92, 1) 100%);
  border: 1px solid #002349;
  transition: background-color 0.3s ease;
}
.btn-blue-dark:hover {
  background: linear-gradient(180deg,rgba(22, 50, 92, 1) 0%, rgba(0, 35, 73, 1) 100%);
  border: 1px solid #16325C;
  color: #ffeac5;
}

.btn-blue-light {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(180deg,rgba(33, 142, 190, 1) 0%, rgba(15, 62, 105, 1) 100%);
  border: 1px solid #0086b5;
  transition: background-color 0.3s ease;
}
.btn-blue-light:hover {
  background: linear-gradient(180deg,rgba(15, 62, 105, 1) 0%, rgba(33, 142, 190, 1) 100%);
  border: 1px solid #0086b5;
  color: #ffeac5;
}

.btn-red-dark{
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg,rgba(168, 0, 24, 1) 0%, rgba(89, 22, 22, 1) 100%);
  border: 1px solid #591616;
}

.btn-red-dark:hover{
  background: linear-gradient(180deg,rgba(89, 22, 22, 1) 0%, rgba(168, 0, 24, 1) 100%);
  border: 1px solid #591616;
  color: #fff;
}

.btn-warning-light {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(180deg,rgba(255, 214, 89, 1) 0%, rgba(255, 193, 7, 1) 100%);
  border: 1px solid #ffc107;
  transition: background-color 0.3s ease;
}

.btn-warning-light:hover {
  background: linear-gradient(180deg,rgba(255, 193, 7, 1) 0%, rgba(255, 214, 89, 1) 100%);
  border: 1px solid #ffc107;
}

/* HEADER STYLE */

.header-container {
  height: 160px;
  margin-bottom: 10px;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.header-content {
  height: 100%;
  padding: 20px;
}
.header-subtitle {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.header-subtitle:hover {
  color: #0086b5;
  text-decoration: none;
}

/* GENERAL STYLE */
.section-panel {
  background-color: #213d69;
  padding: 10px;
  margin: 10px 0;
}
.section-title {
  margin-bottom: 0;
}

/* TOAST STYLE */
.toast-header {
  background-color: #0d1d33;
}
.toast-body{
  background-color: #1d3557;
}
.close {
  color: #fff;
}

