center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 950px;
    background: white;
    border-radius: 0px;
    /*border: solid 1px;*/
}

a {
    color: #2e7d32;
    text-decoration: underline;
}

    a:hover {
        color: forestgreen;
    }

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

.container {
    position: relative;
    width: 90vw;
    height: 90vh;
    margin: auto;
}

.element {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50vw;
    height: 50vh;
    text-align: center;
    padding: 50vw 0;
    font-size: xx-large;
}

.login-outer-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .login-outer-wrapper > .flex-grow-1 {
        flex: 1 1 auto;
    }

#dvFooter {
    flex-shrink: 0;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.black-link {
    color: #212121 !important;
    text-decoration: none;
}

.home-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    text-align: center;
}

.home-card-img {
    width: 250px;
    height: 150px;
    margin-bottom: 16px;
    display: block;
}

.home-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
}

.home-card-subtitle {
    font-size: 1rem;
    color: #888;
}

.btn-link {
    color: #388e3c !important; /* green */
    text-decoration: none;
}

    .btn-link:hover {
        color: forestgreen !important; /* green */
    }

.form-control:focus {
    box-shadow: none;
    transition: all .1s linear;
    border-color: #388e3c;
    box-shadow: inset 0 0 0 1px #2e7d32;
}

.home-card-title:hover {
    color: #2e7d32 !important; /* green */
    background-color: #e0e0e0; /* light gray */
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    padding: 4px 8px;
    /* cursor:pointer;*/
}

.custom-dialog-form .mud-input-label .mud-input-text-with-label {
    color: #388e3c !important; /* Custom label color */
}

.custom-dialog-form .mud-input-input .mud-input-text-with-label {
    color: #388e3c !important; /* Custom input text color */
}

.custom-dialog-form .mud-input-root.mud-input-root-focused .mud-input-label {
    color: #2e7d32 !important; /* Label color on focus */
}

.custom-dialog-form .mud-input-root.mud-input-root-focused .mud-input-input {
    color: #388e3c !important; /* Input text color on focus */
}

.form-check-input[type=checkbox]:checked {
    background-image: none;
    background-color: #388e3c;
    border-color: #2e7d32;
}
.form-check-input[type=checkbox]:checked:focus {
    background-color: #388e3c;
}

.form-check-input:checked:focus {
    border-color: #388e3c;
}

.mud-chip.mud-chip-size-medium {
    border-radius: 8px;   
    padding:15px;
}
.mud-chip.mud-chip-size-large {
    border-radius: 10px;
  
}
 

.mud-table-modern th,
.mud-table-modern td {
    border-right: 1px solid #e0e0e0;
    padding: 12px;
}

    .mud-table-modern th:last-child,
    .mud-table-modern td:last-child {
        border-right: none;
    }

.mud-table-modern tr {
    border-bottom: 1px solid #f5f5f5;
}

.mud-table-modern {
    border-collapse: separate;
    border-spacing: 0;
    background: #fcfcfc;
}

.no-border {
    border: none !important;
}
.no-wrap-header th, .no-wrap-header .mud-table-cell {
    white-space: nowrap;
    padding: 15px;
}