.midar-slider {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.slider-wrapper {
    display: flex;
    height: 100%;
}
.main-slide {
    position: relative;
    overflow: hidden;
}
.main-slide-content {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.main-slide-content.fade {
    opacity: 0;
}
.main-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: calc(100% - 20px);
    box-sizing: border-box;
}
.read-more {
    color: #ff6200;
    text-decoration: none;
}
.thumbnail-container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 10px;
    flex: 1;
}
.thumbnail {
    display: flex;
    margin-bottom: 10px;
    cursor: pointer;
}
.thumbnail img {
    border-radius: 10px;
}
.thumb-content {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    margin-left: 10px;
    border-radius: 10px;
    flex: 1;
}
.thumbnail.active {
    border: 2px solid #ff6200;
}