/* Lab Bitramen - Stili personalizzati */

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gradient-bg {
    background: linear-gradient(120deg, #2563eb, #3b82f6, #60a5fa);
}

.tag-filter {
    transition: all 0.2s ease;
    cursor: pointer;
}

.tag-filter:hover {
    transform: translateY(-1px);
}

.tag-filter.active {
    font-weight: 500;
}

.tool-card {
    transition: all 0.3s ease;
}

/* Colori specifici per le varie categorie di progetti */

/* SQL2Laravel */
.bg-db {
    background-color: #e9f7ef;
}
.text-db {
    color: #27ae60;
}

/* TUIos */
.bg-terminal {
    background-color: #f5f5f5;
}
.text-terminal {
    color: #34495e;
}

/* Prompty */
.bg-ai {
    background-color: #f3e5f5;
}
.text-ai {
    color: #8e44ad;
}

/* Foodfor */
.bg-food {
    background-color: #ffebee;
}
.text-food {
    color: #e74c3c;
}
