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

/* Custom styles */
.form-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 3px;
    background-clip: content-box;
    border: 2px solid #bbbbbb;
    background-color: #e7e6e7;
    border-radius: 50%;
}

.form-radio:checked {
    background-color: #DC0F37;
    border-color: #DC0F37;
}

/* Focus styles */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 15, 55, 0.5);
}

/* Button hover effect */
button:hover {
    filter: brightness(90%);
}
