/* Custom styles to supplement Tailwind */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Tool Card Hover Effect adjustments */
.tool-card {
    will-change: transform, box-shadow;
}

/* Ensure icons are centered */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Selection Color matches brand */
::selection {
    background-color: #ffebee;
    color: #e53935;
}

/* Custom Utilities if needed */
.text-brand-red {
    color: #e53935;
}

.bg-brand-red {
    background-color: #e53935;
}

.hover\:bg-brand-red:hover {
    background-color: #d32f2f;
}