/* Overall Container */
#bike-configurator {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bike Configurator Layout - Three Columns */
#configurator-layout {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Left Sidebar - Selected Specs */
#selected-specs {
    width: 25%;
    padding: 15px;
    border-right: 2px solid #ddd;
    background: #f9f9f9;
}

#selected-specs h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

#selected-components {
    list-style: none;
    padding: 0;
}

#selected-components li {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

/* Bike Preview (Centered) */
#preview-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bike Preview Box */
#bike-preview {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    background: #f4f4f4;
    border: 2px solid #ddd;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bike-preview img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
}

/* Right Sidebar - Available Options */
#options-panel {
    width: 25%;
    padding: 15px;
    border-left: 2px solid #ddd;
    background: #f9f9f9;
}

#component-options {
    margin-top: 10px;
}

/* Tabs Navigation (Below Preview) */
#configurator-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #ddd;
    width: 100%;
    max-width: 800px;
}

#configurator-tabs li {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #eee;
    cursor: pointer;
    border-right: 1px solid #ddd;
    font-weight: bold;
}

#configurator-tabs li.active {
    background: #0073aa;
    color: #fff;
}

#configurator-tabs li:hover {
    background: #005f8d;
    color: #fff;
}

/* General Select Styling */
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
}
