body {
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
}

.bg-red-500 {
    background-color: #ff0000;
}

.hover\:bg-red-700:hover {
    background-color: #cc0000;
}

.text-white {
    color: white;
}

.border-red-300 {
    border-color: #ff9999;
}

.focus\:border-red-300:focus {
    border-color: #ff9999;
}

.focus\:ring-red-200:focus {
    --tw-ring-color: #ffcccc;
}

.bg-gray-500 {
    background-color: #6b7280;
}

.hover\:bg-gray-700:hover {
    background-color: #4b5563;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add this new style for input fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"],
select,
textarea {
    border: 1px solid #d1d5db; /* A light gray border */
    border-radius: 0.25rem; /* Slightly rounded corners */
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}