.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Increase the desired width of your slider */
    overflow: hidden;
    margin: 0 auto; /* Center the slider horizontally */
}

/* Styling for the individual slides */
.slide.spot-light-slide {
    position: relative;
    width: 100%;
    height: 300px; /* Set the desired height of your slider */
    background-size: cover;
    background-position: center;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none; /* Hide all slides initially */
}

/* Styling for the title, price, and location */
.slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

/* Styling for manual control icons */
.manual-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Styling for clickable elements */
.clickable {
    cursor: pointer;
}

.spotlight-ad-label{
    background-color: #2600ff; /* Set your desired background color */
    color: #fff; /* Set your desired text color */
    padding: 5px 10px; /* Adjust padding as needed */
    border-radius: 3px; /* Add border radius for rounded corners */
    font-weight: bold; /* Adjust font weight as needed */
    display: inline-block;
}

.top-ad-label {
    margin-right:-40px;
    background-color: #ff9900; /* Set your desired background color */
    color: #fff; /* Set your desired text color */
    padding: 5px 10px; /* Adjust padding as needed */
    border-radius: 3px; /* Add border radius for rounded corners */
    font-weight: bold; /* Adjust font weight as needed */
    display: inline-block; /* Keep the label inline with the title */
}

.bumpup-ad-label {
    background-color: #40408f;
    color: #fff;
    padding: 1px 2px;
    border-radius: 3px;
    font-weight:bold;
    float:right;
    display: inline-flex; /* Use inline-flex to align the icon and text horizontally */
    align-items: center;
    margin-right:-40px; /* Vertically center the icon and text */
}


.bumpup-ad-label i {
    margin-right: 5px; /* Add some space between the icon and text */
}