


/* BUTTON */
.message-btn{
    background:#25D366;
    color:white;
    border:none;
    padding:10px 8px;
    border-radius:8px;
    cursor:pointer;
    font-size:12px;
}

/* POPUP BACKGROUND */
.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9999;
}

/* POPUP BOX */
.popup-content{
    background:white;
    width:90%;
    max-width:400px;
    padding:20px;
    border-radius:12px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

/* TEXTAREA */
.popup textarea{
    width:100%;
    height:120px;
    padding:10px;
    border:1px solid #ccc;
    border-radius:8px;
    resize:none;
    margin-top:10px;
    font-size:14px;
}

/* BUTTONS */
.popup-buttons{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.popup-buttons button{
    flex:1;
    padding:10px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.popup-buttons button:first-child{
    background:#25D366;
    color:white;
}

.popup-buttons button:last-child{
    background:#ddd;
}
