/* Solar System Orbital Styles */
.solar-system-orbital {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-image: url("../images/planetaryum/solar-system-bg.jpg");
    background-size: cover;
    backdrop-filter: brightness(50%);
    position: relative;
    font-family: "VistolSans-Bold", sans-serif;
}

.solar-system-orbital canvas {
    display: block;
    touch-action: pan-y;
}

.solar-system-orbital #canvas-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.solar-system-orbital .buttons-column {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 80px;
    background: #0e0f12;
    border-right: 0.5px solid grey;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.solar-system-orbital .buttons-column::-webkit-scrollbar {
    display: none;
}

.solar-system-orbital .buttons-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    top: 5%;
}

.solar-system-orbital .button {
    width: 50px;
    height: 70px;
    margin: 5px auto;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #7C439A;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
}

.solar-system-orbital .button img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.2s ease;
}

.solar-system-orbital .button span {
    font-size: 10px;
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    color: white;
    margin-top: 5px;
    text-align: center;
}

.solar-system-orbital .button:hover {
    cursor: pointer;
    transform: scale(1.03);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.solar-system-orbital .button.active {
    background: #C3D940;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.solar-system-orbital .button.active img {
    transform: scale(1.05);
}

.solar-system-orbital .zoom-controls {
    position: absolute;
    top: 10%;
    left: 12%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 20px;
    z-index: 10;
}

.solar-system-orbital .zoom-btn {
    width: 60px;
    height: 40px;
    background: linear-gradient(45deg, #7C439A, #C3D940);
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    font-weight: bold;
    font-family: "VistolSans-Medium", sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.solar-system-orbital .zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.solar-system-orbital .zoom-btn:active {
    transform: scale(0.95);
}

.solar-system-orbital .label {
    color: grey;
    padding: 10px 5px;
    font-size: 10px;
    font-family: "VistolSans-Medium", sans-serif;
    font-weight: 500;
    text-align: center;
    position: relative;
    top: 5%;
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1200px) {
    .solar-system-orbital .buttons-column {
        width: 70px;
    }
    
    .solar-system-orbital .button {
        width: 45px;
        height: 65px;
    }
    
    .solar-system-orbital .zoom-controls {
        left: 20%;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .solar-system-orbital {
        touch-action: pan-y;
    }
    
    .solar-system-orbital .buttons-column {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: #0e0f12;
        border-right: none;
        border-top: 0.5px solid grey;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
    
    .solar-system-orbital .buttons-list {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        top: 0;
        width: 100%;
    }
    
    .solar-system-orbital .button {
        width: 40px;
        height: 40px;
        margin: 0 2px;
        border-radius: 50px;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }
    
    .solar-system-orbital .button img {
        width: 30px;
        height: 30px;
        margin: 0;
    }
    
    .solar-system-orbital .button span {
        display: none;
    }
    
    .solar-system-orbital .zoom-controls {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .solar-system-orbital .zoom-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
}