/* Tiny design tweaks to make the site feel slightly more premium without changing the GHL layout */

/* Better text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle button hover effects */
button, .btn, a[class*="btn"] {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

button:hover, .btn:hover, a[class*="btn"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Slightly nicer inputs */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25) !important;
    border-color: #007bff !important;
    outline: none !important;
}
