
.calling-request {
    z-index: 999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.calling-request .call-request-info {
    position: relative;
    top: calc(50% - 100px);
    left: calc(50% - 150px);
    width: 300px;
}
.calling-request .card {
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.calling-request .card-body {
    border: 1px solid #dcdcdc;
    background-color: #fff;
    border-radius: 10px;
}
.calling-request .calling-overlay {
    background: #0000001a;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.calling-request .caller-info {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}
.calling-request .caller-info .caller-name {
    font-weight: 600;
    font-size: 20px;
}
.calling-request .call-actions {
    display: flex;
    justify-content: space-around;
}
