/* Mir4 Clan Expedition Calculator Styles */

.mir4-ce-calculator-wrapper th {
    color: #9ca3af; /* Corresponds to Tailwind's text-gray-400 */
    background: black;
}

.mir4-ce-calculator-wrapper td {
    color: #e5e7eb; /* Corresponds to Tailwind's text-gray-200 */
    background:rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.mir4-ce-calculator-wrapper table tbody tr:nth-child(2n) td {
    background: darkslategrey;
}

.mir4-ce-calculator-wrapper .text-sm {
    color:bisque;
}

.mir4-ce-calculator-wrapper input[type=number]
{    color: tomato;}
/* Custom styles for checkboxes */
.custom-checkbox {
    appearance: none;
    background-color: #4A5568; /* gray-700 */
    border: 1px solid #718096; /* gray-500 */
    border-radius: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.custom-checkbox:checked {
    background-color: #4299E1; /* blue-500 */
    border-color: #4299E1; /* blue-500 */
}

.custom-checkbox:checked::after {
    content: '✔';
    font-size: 0.8rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.info-box {
     min-height: 90px;
}
