/* ==========================================================================
   PARENT SCOPING CONTAINER
   ========================================================================== */
.JodiChartTable {
  text-align: center;
}

.JodiChartTable * {
  box-sizing: border-box;
}


.JodiChartTable .jodi-table {
    width: 100%;
    overflow-x: auto;
    margin-top: 10px;
    border: 2px solid #3f51b5;
}

.JodiChartTable .table-title {
    background-color: #3f51b5;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 0px;
}

.JodiChartTable .days-header th {
    background-color: #ffc107;
    color: #000;
    font-weight: bold;
    font-size: 19px;
    padding: 2px;
    border: 1px solid #000000;
    text-align: center;
    text-shadow: 1px 1px 2px #9a7400ab;
}

.JodiChartTable .jodi-table tbody td {
    border: 1px solid #000000;
    padding: 2px;
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    width: 14.28%;
}

/* Highlight Variant */
.JodiChartTable .highlight-red {
  color: #ff0000 !important;
}

/* Row Hover State */
.JodiChartTable .jodi-table tbody tr:hover {
  background-color: #f1ebd9;
}