/* Container for the banners */
.banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
     /* Maximum width for large screens */
    margin: 0 auto;
    overflow: hidden;
    z-index: 1000;
    background-color: #333;
}

/* Styling for banners */
.banner {
    width: 100%;
    height: 100px;
    display: none;
    text-align: center;
    line-height: 100px; /* Center text vertically */
    font-size: 18px; /* Adjust font size for better responsiveness */
    color: #fff;
    background-color: #333; /* Placeholder background color */
}

/* Larger banner */
.banner-large {
    height: 200px;
    font-size: 24px; /* Larger font size for larger banner */
}

/* Smaller banner */
.banner-small {
    height: 100px; /* Smaller height for the smaller banner */
    font-size: 18px; /* Smaller font size for smaller banner */
}

/* Show the current banner */
.banner.active {
    display: block;
}

/* Styling for navigation arrows */
.arrow {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 24px; /* Larger font size for better visibility */
}

/* Up arrow */
.up-arrow {
    top: 10px;
    right: 50px;
}

/* Down arrow */
.down-arrow {
    top: 10px;
    right: 50px;
}

/* Styling for close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 20px; /* Larger font size for better visibility */
};
 