html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.scroll-messages {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #f3e9e3;
}

.message-container {
    height: 60px !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 1600px; /*shyamal25112024*/
    /*background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);*/
    border-radius: 8px;
    overflow: hidden;
}
.message-title-container {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
    background-color: #c0392b;
    color: #ffffff;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
}

    .message-title-container::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 15px solid #c0392b;
    }

.marquee-outer {
    flex: 1;
    overflow: hidden;
    background-color: #ffffff;
    padding: 15px;
    position: relative;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-right: 100%; /* Ensures there is enough space between repeats */
    animation: marquee 30s linear infinite; /* Adjust timing for readability */
}

.message-content {
    color: #c0392b;
    font-size: 1.1em;
    line-height: 1.6;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (min-width: 576px) {
    .message-title-container {
        flex: 0 0 20%;
        max-width: 20%;
        text-align: left;
        border-radius: 8px 0 0 8px;
    }

    .marquee-outer {
        flex: 1;
    }
}

nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar container */
.navbar-light {
    background-color: #ff7f50; /* Coral background color */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Navbar brand */
/*.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}
*/
/* Navbar links */
/*.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;*/ /* Ensure items are in a row */
/*}*/

/*.nav-item {
    margin: 0 15px;*/ /* Add space between items */
/*}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 10px;
    border-radius: 4px;
}*/

    .nav-link:hover {
        background-color: #ff6347; /* Slightly darker coral */
        transition: background-color 0.3s ease;
    }