/* Change header background and text color */
.dataTable thead th {
    background-color: #35d1c7; /* Dark Blue */
    color: #ffffff;            /* White text */
    border: 2px solid #ffffff;
}

.w-30-px{
    width:30px;
}
.h-35-px{
    height:35px;
}
.w-40-px{
    width:40px;
}
.h-40-px{
    height:40px;
}


.btn-theme{
    background-color:#35d1c7;
    border-color: #35d1c7;
    color: #fff;
}
.btn-theme:hover {
  color: #35d1c7;
  background-color: #fff;
  border-color: #35d1c7;
}

.wrapper .main-nav .navbar-nav .sub-menu-nav .sub-menu-item .sub-menu-link.active, .wrapper .main-nav .navbar-nav .sub-menu-nav .sub-menu-item .sub-menu-link:active, .wrapper .main-nav .navbar-nav .sub-menu-nav .sub-menu-item .sub-menu-link:focus, .wrapper .main-nav .navbar-nav .sub-menu-nav .sub-menu-item .sub-menu-link:hover{
    color: #35d1c7;
}

.h-table *{
    border: 1px solid #000;
    padding: 0 10px;
}
.h-table th:last-child,
.h-table td:last-child, .h-table th:first-child, .h-table td:first-child {
    display: none !important;
}

#exposureChart {
    width: 300px !important;
    height: 300px !important;
}
.chart-card-body{
    display: flex;
    justify-content: center;
    align-items: center;
}


.wizard-step {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9e9ef;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #ddd;
    margin: 0 7px;
}

.step.active,
.step.completed {
    background: #35d1c7;
    color: #fff;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  display: block;
  font-size: 0.875rem;
}



