#model-list #hw-list {
    list-style-type: none;
    padding: 0;
}

#model-list #hw-list {
    background-color: white;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#notes-content {
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#result li {
    list-style-type: none;
    padding: 0;
    background-color: white;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
}


.search-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.search-bar select,
.search-bar button {
    padding: 10px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .search-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.search-btn {
    background-color: #005baa;
    /* Azul WEG */
    color: #ffffff;
    /* Texto branco */
    border: 2px solid #005baa;
    /* Borda azul */
    border-radius: 5px;
    /* Bordas arredondadas */
    padding: 10px 20px;
    /* Espaçamento interno */
    font-size: 16px;
    /* Tamanho da fonte */
    font-weight: bold;
    /* Negrito */
    cursor: pointer;
    /* Cursor de ponteiro */
    transition: background-color 0.3s, border-color 0.3s;
    /* Transição suave */
}

.copy-btn {
    background-color: #005baa;
    /* Azul WEG */
    color: #ffffff;
    /* Texto branco */
    border: 2px solid #005baa;
    /* Borda azul */
    border-radius: 5px;
    /* Bordas arredondadas */
    padding: 5px;
    /* Espaçamento interno */
    font-size: 16px;
    /* Tamanho da fonte */
    font-weight: bold;
    /* Negrito */
    cursor: pointer;
    /* Cursor de ponteiro */
    transition: background-color 0.3s, border-color 0.3s;
    /* Transição suave */
    margin-left: 5px;
}

.search-btn:hover,
.copy-btn:hover {
    background-color: #003f7f;
    /* Azul mais escuro para o hover */
    border-color: #003f7f;
    /* Borda azul mais escura */
}

.search-btn:active,
.copy-btn:hover {
    background-color: #002a5a;
    /* Azul ainda mais escuro para o clique */
    border-color: #002a5a;
    /* Borda azul ainda mais escura */
}

/* Current version section styles */
.current-version-section {
    background-color: white;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.current-version-section h3 {
    color: #005baa;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.current-version-item {
    margin-bottom: 20px;
}

.version-container {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: box-shadow 0.3s ease;
}

.version-container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.version-container h4 {
    color: #005baa;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.version-container p {
    margin: 10px 0;
    font-size: 16px;
}

.download-link {
    display: inline-block;
    background-color: #005baa;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 3px;
    margin-right: 10px;
    font-weight: bold;
}

.download-link:hover {
    background-color: #004080;
}

.copy-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
}

.copy-btn:hover {
    background-color: #218838;
}

/* Hardware section styles */
.hw-section {
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
    padding: 15px;
}

.hw-title {
    color: #005baa;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #005baa;
    padding-bottom: 5px;
}

/* Latest version styling */
.latest-version {
    border: 2px solid #28a745;
    background-color: #f8fff8;
}

.latest-badge {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    background-color: #d4edda;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}