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

body {
    margin: 0;
    line-height: inherit;
    font-family: "Cairo", "Roboto", sans-serif !important;
    padding: 0;
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    background-color: #f9f9f9; /* Optional background color */
}

a {
    cursor: pointer;
}

hr {
    height: 1px;
    align-self: stretch;
    background: var(--Blacks-07, #E1E4E8);
}

input[type="radio"] {
    appearance: none; /* Remove default styles */
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    border-radius: 100%;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="checkbox"] {
    appearance: none; /* Remove default styles */
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="radio"]:checked, input[type="checkbox"]:checked {
    background-color: #016FD0; /* Green background */
    border-color: #016FD0; /* Green border */
}