#table th:last-of-type, #table td:last-of-type {
    overflow: visible !important; /* Override Tailwind's overflow: hidden */
}

input:disabled {
    background-color: rgba(141, 3, 3, 0.1); /* Light grey background */
    color: rgba(255, 255, 255, 0.5); /* Lighter text color */
    cursor: not-allowed; /* Not allowed cursor */
}

.custom-hcaptcha {
    display: inline-block; /* Ensures it behaves like a block element for centering */
    padding: 10px; /* Adds space around the hCaptcha element */
    background-color: rgb(23, 25, 28); /* Matches the input background */
    border-radius: 10px; /* Rounds the corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow for emphasis */
}

.custom-hcaptcha iframe {
    margin: auto; /* Centers the iframe inside the div */
}

.flex.justify-center.items-center {
    justify-content: center;
    align-items: center;
}

/* Input background color */
.bg-vorpal-input {
    background-color: rgb(23, 25, 28);
}

/* Accent text color */
.text-vorpal-accent {
    color: rgb(230, 29, 65);
}
.text-vorpal-accent-hover:hover {
    color: rgb(200, 25, 55); /* Slightly darker for hover */
}

/* Accent background color for buttons */
.bg-vorpal-accent {
    background-color: rgb(230, 29, 65);
}
.bg-vorpal-accent-hover:hover {
    background-color: rgb(200, 25, 55); /* Slightly darker for hover */
}

/* For checkbox accent */
.checkbox-vorpal-accent {
    accent-color: rgb(230, 29, 65);
}

/* Screen-reader only class - Tailwind's .sr-only is preferred if available */
/* Fallback in case Tailwind's .sr-only is not configured/working */
.vorpal-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}