.category {
    font-weight: bold;
    margin: 20px 0 10px;
    padding-left: 10px;
    border-left: 5px solid #49d391;
}

.btn-custom {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 0px 8px #e2e8f0;
    transition: 0.1s;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-custom:hover {
    background-color: #49d39022;
    outline: 1px solid #49d391;
}

.btn-custom span {
    font-size: 25px;
    font-weight: normal;
    color: #475569;
    margin-top: 5px;
}

.container {
    margin-top: 80px;
    max-width: 1200px;
}

.btn-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .btn-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .btn-custom {
        font-size: 24px;
    }
    .btn-custom span {
        font-size: 18px;
    }
}