body {
    /* background: #a5b0ba; */
    background-image: url('../images/background_index.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.body-index {
    /* background: #a5b0ba; */
    background-image: url('../images/background_index1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.card {
    background: #343a40;
    /*background: #0b627d;*/
}

.MovMonTitle {
    color: #0b627d;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;

    z-index: 9999;

    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);

    align-items: center;
    justify-content: center;
}

.loading-box {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

.loading-text {
    margin-top: 12px;
    font-size: 14px;
    color: #444;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.PageTitle {
    background: #c5c5c5;
}

.table-row {
    background-color: #ffffff;
}

h6 {
    color: #ffffff;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

a {
    text-decoration: none;
}

a.icon-red {
    color: red;
}

a.icon-blue {
    color: rgb(0, 157, 255);
}

a.icon-grey {
    color: rgb(168, 168, 168);
}

.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
}

.bg-featured-blog {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 15rem;
}

.carousel-item {
    height: 500px;
    overflow: hidden;
    width: 100%;
}

video {
    width: 100%;
    height: auto;
}
.align-middle {
    vertical-align: middle;
  }

.glow-button {
    --box-shadow-color: black;
    box-shadow: 0 0 30px var(--box-shadow-color);
}

.btn-outline-info.glow-button {
    --box-shadow-color: #17a2b8;
}

.btn-primary.glow-button {
  --box-shadow-color: #007bff;
}

.btn-secondary.glow-button {
  --box-shadow-color: #6c757d;
}

.btn-success.glow-button {
  --box-shadow-color: #28a745;
}

.btn-danger.glow-button {
  --box-shadow-color: #dc3545;
}

.btn-warning.glow-button {
  --box-shadow-color: #ffc107;
}

.btn-info.glow-button {
  --box-shadow-color: #17a2b8;
}

.btn-light.glow-button {
  --box-shadow-color: #f8f9fa;
}

.btn-dark.glow-button {
  --box-shadow-color: #343a40;
}
.navbar-nav .nav-item.active .nav-link {
    color: #0b627d; /* Change this color to your desired shade of blue */
    font-weight: bold;
}
.custom-carousel-control .carousel-control-prev-icon,
.custom-carousel-control .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    padding: 10px; /* Add some padding around the icon */
    border-radius: 50%; /* Make the background circular */
    width: 50px; /* Set the width of the icon */
    height: 50px; /* Set the height of the icon */
}

table thead.thead-dark-custom th {
  background-color: #343a40 !important;
  color: #fff !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #0d6efd;  /* Bootstrap 5 primary color */
  color: #fff;               /* White text for contrast */
}
.dropdown-item {
  transition: background-color 0.2s ease;
}
