
.image-gallery-component * {
    box-sizing: border-box;
}

.image-gallery-component {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    min-height: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

.left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title-section {
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.gallery-description {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.gallery-description li {
    margin-bottom: 10px;
    line-height: 1.6;
}


.options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.option-button {
    background-color: var(--button-bg, #333333);
    color: var(--button-color, #ffffff);
    border: 1px solid var(--button-border, #444444);
    border-radius: var(--button-radius, 20px);
    padding: var(--button-padding, 10px 20px);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: var(--button-font-size, 14px);
    font-weight: var(--button-font-weight, normal);
    min-width: var(--button-min-width, auto);
    white-space: nowrap;
}

.option-button:hover {
    background-color: var(--button-hover-bg, #444444);
    color: var(--button-hover-color, #ffffff);
}

.option-button.active {
    background-color: var(--button-active-bg, #ffffff);
    color: var(--button-active-color, #121212);
    font-weight: var(--button-active-font-weight, bold);
}


.explore-button {
    background-color: #444444;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
    align-self: flex-start;
}

.explore-button:hover {
    background-color: #333333;
}

.right-panel {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
}


.content-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}


.gallery-item {
    position: absolute;
    border-radius: 10px;
    transition: none; 
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-item.main-item {
    cursor: default;
}

.gallery-item.thumb-item:hover {
    opacity: 1;
}


.content-gallery.flipping .gallery-item {
    pointer-events: none;
}

.content-gallery.flipping .thumb-item:hover {
    transform: none;
    opacity: 1;
}


.image-gallery-component {

    max-width: none;
    width: 100%;
    height: 100%;
}

.content-gallery {

    width: 100%;
    height: 100%;
}
