* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.container .logo {
    width: 700px !important;
    height: auto !important;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.spec-button {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
    font-size: 1.5rem;
    padding: 0.05rem 1rem;
}

.spec-button:hover {
    opacity: 0.8;
}

.spec-container {
    min-height: 100vh;
}

.product-image {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.specs-section {
    padding: 2rem;
    background-color: black;
    overflow-x: hidden;
    position: relative;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    position: relative;
    padding-bottom: 30px;
}

.expand-specs-indicator {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid white;
    cursor: pointer;
}

.expand-text {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.expand-arrow {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

#specs-table table,
#specs-table-2-container table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    text-align: left;
    table-layout: fixed;
}

th,
td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #444;
}

th {
    background-color: #333;
    position: sticky;
    top: 0;
    text-align: center;
}

td:first-child {
    background-color: #333;
    font-weight: bold;
    text-align: left;
}

.spec-name-cell {
    width: 150px;
    min-width: 150px;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.top-controls {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.back-button {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.2s;
    position: fixed;
    left: 20px;
    top: 20px;
}

.back-button:hover {
    opacity: 0.8;
}

.selectors {
    display: flex;
    gap: 20px;
    margin-right: 20px;
    position: fixed;
    right: 20px;
    top: 20px;
}

.image-dropdown {
    padding: 8px 12px;
    font-size: 16px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
    min-width: 150px;
}

.image-dropdown:hover {
    opacity: 0.8;
}

.image-dropdown:focus {
    outline: none;
}

.image-dropdown option {
    background-color: #333;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.scroll-label {
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-button {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.scroll-button:hover {
    transform: translateY(5px);
}

.scroll-button:active {
    transform: translateY(10px);
}

.model-viewer-container {
    width: 100vw;
    height: 100vh;
    background-color: black;
    position: relative;
}

.model-viewer-container .model-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    z-index: 1000;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.model-info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 14px;
    opacity: 0.7;
}

#model-canvas {
    width: 100%;
    height: 100%;
} 