.user_rec_trans{
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: none;
    color: #7bce7f;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
}
.button_rec_res{
    margin-right: 5px;
    padding: 7px 7px;
    border: none;
    border-radius: 8px;
    background: #7bce7f;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    flex: 1;
}
.button_rec_res:hover{
    transform: scale(1.1);
}
.custom-popup_rec_title{
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}
.custom-popup_rec_buttoncontainer{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.custom-popup_rec_sendbtn{
    width:40px;
    padding: 4px 4px;
    border: none;
    border-radius: 8px;
    background: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    flex: 1;
}
.custom-popup_rec_pausebtn{
    width:40px;
    padding: 4px 4px;
    border: none;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    flex: 1;
    background:#f0f0f0;
}
.custom-popup_rec{
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    min-width: 300px;
    max-height: 600px;
    animation: popupAppear 0.2s ease;
    border: 1px solid #e0e0e0;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    user-select: none;
}