/* ==========================================================================
   Benefits Estimator Specific Styles
   ========================================================================== */

/* General Layout & Containers */
.outercontainer {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
}

.innercontainer {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.innersubcontainer {
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 10px;
    background-color: #fff;
}

/* Typography */
.estimator-title {
    text-align: center;
}

.overflow-wrap-normal {
    overflow-wrap: normal;
}

/* Tables */
.table-center {
    margin-left: auto;
    margin-right: auto;
}

.table-header-light-blue {
    background-color: #003366; /* High contrast replacement for #37c6f4 */
    color: white;
}

.table-header-dark-blue {
    background-color: #002244; /* High contrast replacement for #0193d4 */
    color: white;
}

.table-cell-rotated {
    width: 100px;
    height: 100px;
    transform: rotate(90deg);
    text-align: center;
    vertical-align: middle; /* Added for better alignment */
}

.table-cell-white-bg {
    background-color: white;
}

.table-cell-light-blue-bg {
    background-color: #003366; /* High contrast replacement */
    color: white;
}

.table-cell-dark-blue-bg {
    background-color: #002244; /* High contrast replacement */
    color: white;
}

.table-header-black-text {
    color: black;
    text-align: center;
}

.table-cell-black-text {
    color: black;
    text-align: center;
    height: 50px;
    vertical-align: middle; /* Added for better alignment */
}

/* Specific Table Headers */
.qtr-header {
    width: 50px;
}

.benefit-amount-header {
    width: 150px;
}

.benefit-type-header {
    width: 350px;
}

.text-center {
    text-align: center;
}