.callrecordingcss{
    display: flex; justify-content: center; gap: 5px;
}
.textwidth {
    max-width: 400px;
    overflow: hidden;
    white-space: normal;
    word-break: break-all;
}
.textwidth1 {
    max-width: 180px;
    overflow: hidden;
    white-space: normal;
    word-break: break-all;
}

.custom-notification1 {
display: none; /* Hidden by default */
position: fixed;
top: 50%;
left: 50%;
padding: 7px;
background-color: #d77474; /* Green background */
color: white;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
z-index: 1000;
font-size: 18px;
text-align: center;
justify-content: center;
align-items: center;
transition: opacity 0.5s ease;
width: 300px;
}

.custom-notification1.show {
display: flex; /* Show the notification as a flex container */
opacity: 1;
}

.custom-notification1.hide {
opacity: 0;
display: none;
}

#notification-message1 {
margin: 0; /* Remove default margin */
}


#image-popup {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

#image-popup  {
    max-width: 100%;
    height: auto;
}

#close-popup {
    font-size: 24px;
    font-weight: bold;
}