.call-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 250px;
    padding: 5px;
    background: #292933;
    color: white;
    border: solid;
    border-color: #292933;
    border-radius: 25px;
    z-index: 1000;
}

.popup-content {
    margin: 10px 10px;
}

.popup-content > div {
    display: flex;
    align-items: center;
}

.caller-info {
    display: flex;
    align-items: center; 
}

.phone-icon {
    font-size: 15px;
    background-color: white; 
    color: #292933; 
    border-radius: 50px; 
    padding: 12px; 
    margin-right: 10px;
}

.mute-button {
    background-color: #ddd;
    color: #292933;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 50px;
    height: 50px;
    text-align: center;
    align-content: space-evenly;
}

.mic-muted {
    color: white;
    background-color: #ff4d4d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
}

.nome, .telefone {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.hangup-button {
    background-color: #ff4d4d;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 50px;
    height: 50px;
    text-align: center;
    align-content: space-evenly;
}

.call-button {
    background-color: #46ff3c;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 50px;
    height: 50px;
    text-align: center;
    align-content: space-evenly;
}

.timer-info {
    display: flex;
    align-items: center;
}

.number-info {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
}

.client-info {
    display: flex;
    align-items: center;
}

.dialpad-content {
    margin: 10px;
    /* border-top: thin solid; */
    justify-items: center;
    display: grid;
}

.dial-input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    color: #ddd;
}

.dial-pad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    justify-items: center;
}

.dial-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.footer-content {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
}