html, body {
    height: 100%;
}
body {
    background-color: #ecf0f1;
}
.card-header {
    background-color: #1A3B73;
    color: #fff;
}
.card.add-new {
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.card.add-new:hover {
    background: rgba(255,255,255,0.7);;
}
.card.add-new > .card-body  {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}
.btn.gm-primary {
    border-radius: 0;
    border: 0;
    background-color: #1A3B73;
    color: #fff;
    padding: 10px 30px;
}
.btn.gm-warning {
    border-radius: 0;
    border: 0;
    background-color: #F9B630;
    color: #fff;
    padding: 10px 30px;
}
.btn.gm-success {
    border-radius: 0;
    border: 0;
    background-color: #12a149;
    color: #fff;
    padding: 10px 30px;
}
.select2 { width: 100% !important; }

.modal { backdrop-filter: blur(5px); }

#btn-add-new {
    display: block;
    position: fixed;
    top: auto;
    bottom: 50px;
    left: auto;
    right: 50px;
    background-color: #2ecc71;
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease;
}

#btn-add-new:hover {
    background-color: #27ae60;
}

#btn-add-new > button {
    background-color: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding-top: 0;
}

#btn-add-new > button::after {
    display: none;
}

#log {
    height: 500px;
    overflow-y: scroll;
}
#log ul {
    list-style-type: none;
    padding: 0;
}
#log ul li {
    padding: 10px;
    border-bottom: 1px solid #ecf0f1;
}

.table {
    font-size: 0.8rem;
}

.dots-dropdown {
    display: inline-block;
    padding: .5rem;
    text-align: center;
    cursor: pointer;
}

.badge {
    border-radius: 50px !important;
}

.badge.text-bg-primary {
    background-color: #0984e3 !important;
    color: #fff !important;
}

.badge.text-bg-info {
    background-color: #00cec9 !important;
    color: #fff !important;
}

.badge.text-bg-success {
    background-color: #00b894 !important;
    color: #fff !important;
}

.badge.text-bg-danger {
    background-color: #ff7675 !important;
    color: #fff !important;
}

.badge.text-bg-warning {
    background-color: #fdcb6e !important;
    color: #fff !important;
}

.dropdown-icon {
    padding-right: 20px;
}

.call-log .image-container, .list-card .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.card .menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .menu-container-single {
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 40px;
}

.call-log.whatsapp_message .image-container {
    background-color: #25D366;
    color: #fff;
}

.call-log.webchat .image-container {
    background-color: #0984e3;
    color: #fff;
}

.call-log.sms .image-container, .list-card.texting .image-container {
    background-color: #6c5ce7;
    color: #fff;
}

.call-log.vapi_call .image-container, .call-log.phone_call .image-container, .list-card.calling .image-container {
    background-color: #e84393;
    color: #fff;
}

.call-log.undefined .image-container {
    background-color: #34495e;
    color: #fff;
}

.notifications-menu .notifications-title {}
.notifications-menu .notification {
    width: 100%;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .notifications-menu {
        width: 400px;
        max-height: 500px;
        overflow-y: auto;
    }
}