/* CSS for Vertical Slider */
.slider-container {
    position: relative;
    max-width: 100%;
    /* height: calc(50px + 2em); Set a fixed height for the slider */
    margin: auto;
    margin-top: 1em; 
    overflow: hidden;
    background-color: var(--gray1);
    border: 1px solid var(--border-color); 
}

.slider {
    transition: transform 2s ease-in-out;
    /* height: 100%;  */
    /* Adjust width to match single slide width */
    display: flex;
    flex-direction: column; /* Stack slides vertically */
    place-content: center;
}

.slide {
    display: grid; 
    grid-template-columns: auto 1fr; 
    align-items: center;
    gap: 1em;
    height: calc(50px + 2em); /* Set a fixed height for each slide */
    text-align: left;
    padding: 1em;
    box-sizing: border-box;
    
}

.slide img {
    width: 50px;
    height: 50px;
}


.slide h3 {
    margin: 0;
    font-size: var(--font-size-small);
    font-weight: 500;
}

input[type="radio"] {
    display: none;
}

/* Remove navigation styles */
.slider-nav {
    display: none; /* Hide navigation */
}

.location-street {
    font-size: var(--font-size-small);
    margin: 0;
    color: rgba(0, 0, 0, 0.54);
}

.advertise-message {
    text-align: center; /* Center the text */
    padding: 20px; /* Add some padding */
    font-size: 1.5rem; /* Adjust font size */
    font-size: var(--font-size-small);
    font-style: italic;
}

.advertise-message a {
    color: var(--black); /* Link color */
    text-decoration: none; /* Remove underline */
}

.advertise-message a:hover {
   border-bottom: 1px solid var(--black);
}