.sched-sms-chat-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 480px;
    /* background-color: #030303; */
    z-index: 30000001;
    border: 5px solid #555;
}

.sched-sms-dialog-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10%;
    background-color: #030303;
}

.sched-sms-dialog-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    font-family: Consolas, monospace;
    margin-left: 10px;
    cursor: pointer;
}

.sched-sms-dialog-header h3:hover {
    color: #555;
}

.sched-sms-dialog-header-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.sched-sms-dialog-close,
.sched-sms-dialog-refresh {
    cursor: pointer;
    color: #808080;
    margin-right: 20px;
}

.sched-sms-dialog-refresh {
    font-size: 24px;
    margin-top: 2px;
}

.sched-sms-dialog-close {
    font-size: 28px;
}

.sched-sms-dialog-close:hover,
.sched-sms-dialog-refresh:hover {
    color: #555;
}

.sched-sms-dialog-history {

    width: 100%;
    height: 80%;
    background-color: #030303;
    border-top: 5px solid #555;
    border-bottom: 5px solid #555;
    overflow-y: auto;


}

.sched-sms-dialog-input {
    width: 100%;
    height: 10%;
    background-color: #030303;
    /* border: 5px solid #555; */
}

/* // sms menu */
.sms-dialog-message {
    margin: 10px;
    padding: 10px;
    border-radius: 4px;
    max-width: 70%;
    color: #030303;
    font-family: Consolas, monospace;
}

.sms-dialog-message.server-sent {
    background-color: #bb60b6;
    margin-left: auto;
    font-family: Consolas, monospace;
}

.sms-dialog-message-time {
    font-size: 0.8em;
    color: #333;
    margin-top: 5px;
}

.sms-dialog-message.server-sent .sms-dialog-message-time {
    color: #0000ff;
}


.sms-dialog-message.sent {
    background-color: #45d19b;
    margin-left: auto;
    font-family: Consolas, monospace;

}

.sms-dialog-message.received {
    background-color: #4ecdc4;
    margin-right: auto;
    font-family: Consolas, monospace;

}

.sched-sms-dialog-input-text {
    height: 100%;
    width: 74%;
    font-size: 24px;
    background-color: #030303;
    color: #ffffff;
}

.sched-sms-dialog-input-send {
    height: 100%;
    width: 24%;
    font-size: 24px;
}

.sched-sms-emoji-bar {
    padding: 5px;
    border: 5px solid #555;
    background: #030303;
}

.sched-sms-emoji-bar .emoji {
    cursor: pointer;
    padding: 2px 5px;
    font-size: 1.2em;
    transition: transform 0.1s ease;
}

.sched-sms-emoji-bar .emoji:hover {
    background-color: #555;
}

.sched-sms-emoji-bar .emoji:hover {
    transform: scale(1.2);
}
