.content-more-dots {
    margin: 0 5px;
    font-size: 24px;
    display: inline-block;
    cursor: pointer;
}

.content-icon {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.content-slideshow-container {
    width: 100%; /* Adjust based on preference */
    max-width: 90vw; /* Maximum size */
    height: auto; /* Adjusted to 'auto' to accommodate varying content sizes */
    margin: auto; /* Margin auto for horizontal centering, 20px for some spacing from top/bottom */
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds shadow for depth */
    overflow: hidden;
    border-radius: 10px; /* Optional: adds rounded corners */
    display: flex; /* Added for vertical alignment */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
}

.content-dot-container-frame {
    width: 100%; /* Adjust based on preference */
    max-width: 1000px; /* Maximum size */
    height: auto; /* Adjusted to 'auto' to accommodate varying content sizes */
    margin: auto; /* Margin auto for horizontal centering, 20px for some spacing from top/bottom */
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Optional: adds rounded corners */
    display: flex; /* Added for vertical alignment */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children vertically */
}

.content-slide {
    height: 65vh; /* Adjusted height for the slide */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* White background for slides */
}

.content-slide img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* Ensures no distortion */
}

.content-active {
    display: flex;
}

.content-prev, .content-next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.content-next {
    right: 0;
}

.content-prev {
    left: 0;
}

.content-dot-container {
    text-align: center;
    padding: 20px;
    background: #ddd;
    width: 100%; /* Ensure it spans the full width of the slideshow container */
    max-width: fit-content; /* Maximum size */
    margin: auto; /* Margin auto for horizontal centering, 20px for some spacing from top/bottom */
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds shadow for depth */
    overflow: hidden;
    border-radius: 10px; /* Optional: adds rounded corners */
    display: flex; /* Added for vertical alignment */
    justify-content: center; /* Center children vertically */
}

.content-dot-container-2 {
    text-align: center;
    padding: 5px;
    background: #ddd;
    width: 100%; /* Ensure it spans the full width of the slideshow container */
    height: auto;
    max-width: fit-content; /* Maximum size */
    margin: auto; /* Margin auto for horizontal centering, 20px for some spacing from top/bottom */
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds shadow for depth */
    overflow: hidden;
    border-radius: 10px; /* Optional: adds rounded corners */
    display: flex; /* Added for vertical alignment */
    justify-content: center; /* Center children vertically */
}

.content-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.content-active-dot, .content-dot:hover {
    background-color: #717171;
}

