/*
Theme Name: PainTreatmentTheme
Author: Grok
Description: A WordPress theme for a pain treatment website with minimally invasive interventions.
Version: 1.0
Text Domain: paintreatmenttheme
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f8;
}

header {
    background-color: #007bff; /* Blue */
    color: white;
}

footer {
    background-color: #28a745; /* Green */
    color: white;
}

a {
    transition: color 0.3s ease;
    color: #ffc107; /* Yellow */
}

a:hover {
    color: #fd7e14; /* Orange */
}

.button {
    @apply bg-yellow-500 text-white px-4 py-2 rounded hover:bg-orange-500;
}