/* Honda Element Torque Specs - Public CSS */

.hets-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Search Box Styles */
.hets-search-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

#hets-search {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#hets-search-button {
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#hets-search-button:hover {
    background-color: #005177;
}

/* Tabs Display Style */
.hets-tabs {
    width: 100%;
}

.hets-tab-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.hets-tab-button {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    margin-right: 5px;
    margin-bottom: -1px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hets-tab-button:hover {
    background-color: #e9e9e9;
}

.hets-tab-button.active {
    background-color: white;
    border-bottom: 1px solid white;
}

.hets-tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.hets-tab-content.active {
    display: block;
}

/* Accordion Display Style */
.hets-accordion {
    width: 100%;
}

.hets-accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hets-accordion-header {
    padding: 15px;
    background-color: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.hets-accordion-header:hover {
    background-color: #e9e9e9;
}

.hets-accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.hets-accordion-icon {
    font-size: 20px;
    font-weight: bold;
}

.hets-accordion-content {
    display: none;
    padding: 20px;
    border-top: 1px solid #ddd;
}

/* Dropdown Display Style */
.hets-dropdown {
    width: 100%;
}

#hets-category-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.hets-category-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Table Styles */
.hets-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.hets-specs-table th,
.hets-specs-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.hets-specs-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.hets-specs-table tr:hover {
    background-color: #f9f9f9;
}

/* Search Results */
#hets-search-results {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#hets-back-button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#hets-back-button:hover {
    background-color: #005177;
}

/* Clickable Styles - Make interactive elements more obvious */
.hets-tab-button, 
.hets-accordion-header,
#hets-category-select,
#hets-search-button,
#hets-back-button {
    cursor: pointer;
}

.hets-tab-button:hover, 
.hets-accordion-header:hover {
    background-color: #e0e0e0;
}

.hets-accordion-header {
    position: relative;
}

.hets-accordion-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hets-tab-nav {
        flex-direction: column;
        border-bottom: none;
    }
    
    .hets-tab-button {
        margin-right: 0;
        margin-bottom: 5px;
        border-radius: 4px;
        border-bottom: 1px solid #ddd;
    }
    
    .hets-tab-button.active {
        border-bottom: 1px solid #ddd;
    }
    
    .hets-tab-content {
        border-top: 1px solid #ddd;
    }
    
    .hets-specs-table th,
    .hets-specs-table td {
        padding: 8px;
        font-size: 14px;
    }
    
    .hets-search-container {
        flex-direction: column;
    }
    
    #hets-search-button {
        width: 100%;
    }
}
