/* General Body & Layout Styles */
body {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* Sorgt dafür, dass der main-Bereich den verfügbaren Platz einnimmt */
main.container {
    flex: 1;
}

/* Tool Card Styles */
.tool-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tool-card .card-title a {
    text-decoration: none;
    color: var(--primary-color);
}