.logo-small {
    max-width: 150px; /* Adjust this value to make the logo smaller */
    height: auto;
}

.no-wrap-text {
    white-space: nowrap;
}

/* General button styles */
button {
    touch-action: manipulation;
}

/* Ensure buttons have an outline when focused or active */
button:focus, button:active {
    outline: 2px solid #0056b3; /* Adjust the color and width as needed */
    outline-offset: 2px; /* Adjust the offset as needed */
}

/* Round button styles */
.btn-round {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px;
    position: relative;
}


/* Button text styles */
.btn-text {
    display: block;
    font-size: 16px;
}

/* Active button styles */
.btn-round.active {
    /* border: 5px solid #2b3233 !important; ; Adjust the border color and size as needed */
    box-shadow: 0 0 0 5px #2b3233 !important; /* Adjust the shadow color and size as needed */

}

/* Button container styles */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row; /* Ensures buttons are displayed horizontally */
    margin-top: 20px; /* Adds some space between the logo and the buttons */
}

/* New badge styles */
/* .badge-new {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 12px;
} */


.badge-new {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 12px;
    z-index: 1; /* Ensure the badge stays on top */
}


/* Image styles */
img {
    touch-action: none; /* Disables panning and zooming on the image */
    -webkit-user-drag: none; /* Prevents dragging on iOS */
    user-select: none; /* Prevents text selection */
    pointer-events: none; /* Prevents all mouse events */
}

/* Page styles */
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    padding: 10px;
    background-color: #f8f9fa;
}

/* Media container styles */
.media-container {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.media-container img,
.media-container video {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Navbar styles */
.navbar-nav {
    text-align: right;
}

/* Header styles */
.header img {
    width: 70%;
    margin: auto;
    display: block;
}

/* Footer styles */
.footer {
    margin-top: 30px;
    text-align: center;
}

/* Media grid styles for larger screens */
@media (min-width: 768px) {
    .header img {
        width: 30%;
    }
    .media-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .media-item {
        flex: 0 0 48%;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Media item styles for smaller screens */
@media (max-width: 767px) {
    .media-item {
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Light blue border styles */
.light-blue-border {
    border: 10px solid orange;
}

/* Wider button styles */
.btn-wider {
    width: 60px; /* Adjust this width as needed */
}

