.mud-table thead {
    background-color: #0077b6 !important;
}

.mud-table th {
    background-color: #0077b6 !important;
    color: white !important;
}

.no-wrap-header {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .auth-container h3 {
        text-align: center;
        margin-bottom: 20px;
    }

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #e7f0ff;
}

.btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

.divider {
    text-align: center;
    margin: 20px 0;
}

    .divider::before,
    .divider::after {
        content: "";
        display: inline-block;
        width: 40%;
        height: 1px;
        background: #ccc;
        vertical-align: middle;
        margin: 0 5px;
    }

/* Class cell truncate */
.cell-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

