﻿.payer-name {
    color: green;
    font-weight: bold;
    font-size: 1.5em;
    width: 100%;
}

.member-info {
    background: #f5f7fa;
    padding: 10px;
    border-radius: 6px;
    display: block;
    clear: both; /* Forces this div onto a new line below any preceding floats */
    width: 60%;
}

.benefit-card {
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    width: 100% !important;
}

.btn-icon {
    background-image: url("../images/expand.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
}

.revert-icon {
    transform: rotate(180deg);
}

.benefits-table {
    width: 100%;
    border-collapse: collapse; /* This is crucial for borders on TR elements to display correctly */
    /*table-layout: fixed;*/ /* Ensures specified widths are honored */
}

    .benefits-table th, td {
        text-align: left;
    }

    .benefits-table tr-top-border {
        border-top: 1px solid black;
    }

    .benefits-table thead tr {
        border-bottom: 2px solid #ccc;
    }

    .benefits-table message {
        font-size: 0.75em;
    }
    
.benefits-coveragelevel-col {
    width: 14%;
}

.benefits-servicetype-col {
    width: 16%;
}

.benefits-insurancetype-col {
    width: 14%;
}

.benefits-description-col {
    width: 14%;
}

.benefits-amount-col {
    width: 14%;
}

.benefits-authorization-col {
    width: 14%;
}

.benefits-innetwork-col {
    width: 14%;
}

.form-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group-grid {
    display: flex;
    flex-direction: column;
}

