/* Specific styles for index.html page */
.tools-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
}

.tools-filter .btn {
    flex: 1;
    min-width: 120px;
    min-height: 44px;
    margin-bottom: 5px;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .tools-filter .btn {
        min-width: 100px;
        font-size: 0.875rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .tools-filter .btn {
        min-width: 80px;
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        min-height: 40px;
    }
}
