/* * Main Stylesheet for WB Pay Tools
 *
 * This file contains all custom CSS for the site.
 */

/* Basic body styling - Removed the transition property */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Card hover effect from homepage */
.card-hover-effect {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Styling for form inputs from calculator page */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Styling for focused form inputs */
.form-input:focus {
    outline: none;
    border-color: #3b82f6; /* blue-500 */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

/* Styling for form labels */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500; /* medium */
    color: #374151; /* gray-700 */
}

/* Prevents FOUC (Flash of Unstyled Content) on Feather icons */
[data-feather] {
    display: inline-block;
    vertical-align: middle;
    width: 1.5rem; /* default size h-6/w-6 */
    height: 1.5rem;
}
[data-feather="search"] {
    width: 1.25rem; /* specific override for search h-5/w-5 */
    height: 1.25rem;
}
