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.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}
.card {
    background: #343a40;
    /*background: #0b627d;*/
}

.MovMonTitle {
    color: #0b627d;
}

/*Hidden class for adding and removing*/
.lds-dual-ring.hidden {
    display: none;
}

/*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
.overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    /*background: #0b627d;*/
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

/*Spinner Styles*/
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 5% auto;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #0b627d transparent #0b627d transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        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;
}
