/* Custom styles for SMS portal
 *
 * This file can be used to add application-specific styling. At present it
 * contains only minimal overrides. Feel free to extend as needed.
 */

body {
    font-size: 0.9rem;

}
.card-body.login-card {
    border: 2px solid #000;
    border-radius: 13px;
}
button.btn.btn-primary {
    background: #000;
    border: 1px #fff solid;
}
.container.mt-4 {
    background: #fff;
}
img#header-logo {
    width: 45%;
}
a.nav-link {
    color: #fff;
}
.card-title {
    background: #fff;
}
.display-6 {
    background: #fff;
}
/* Overlay displayed during SMS sending */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    flex-direction: column;
    text-align: center;
}

/* DataTables small table fixes */
.table-datatable.dataTable {
    width: 100% !important;
}

/* Checkbox styling for bulk-select tables */
.table .select_item,
.table #select_all {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    transform: scale(1.05);
}
.table th.no-sort,
.table td:first-child {
    text-align: center;
}