.traffic-signs-section {
    margin-top: 20px;
    padding: 20px;
}

.traffic-signs-section .description {
    margin-bottom: 20px;
}

.traffic-signs-section .description ul {
    list-style-type: disc;
    margin-left: 20px;
}

.filter-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-wrapper select {
    padding: 8px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
}

.tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tabs-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    scrollbar-width: thin;
}

.tab {
    padding: 8px 16px;
    margin-right: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.tab.active {
    background-color: #007bff;
    color: white;
}

.tab:hover {
    background-color: #e0e0e0;
}

.sign-content {
    margin-top: 20px;
}

.sign-details {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sign-details.active {
    display: block;
}

.sign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sign-code {
    font-weight: bold;
    font-size: 18px;
}

.sign-image {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.sign-description p {
    margin: 10px 0;
    line-height: 1.5;
}

.download-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.download-icon {
    vertical-align: middle;
}