/* assets/css/style.css */

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #fdfdfd;
}

.navbar-brand {
    letter-spacing: 1px;
}

/* Subtle hover effect for your tool cards */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Ensure the main content pushes the footer to the bottom */
main {
    min-height: 65vh; 
}