*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif
}
body{
    background-color: #fcfcfc;
    position: relative;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}
.profile{
    width: 100px;
    height: 70px;
    margin-bottom: 40px;
}
.profile img{
    width: 100%;
    border-radius: 50%;
    border: 3px solid #4070f4;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.1);  
}
span,p{
    padding: 5px;
    color: #333;
}
span{
    font-size: 25px;
    letter-spacing: 1.3px;
}
p{
    font-size: 20px;
}
.button{
    margin-top: 15px;
    background-color: #4070f4;
    padding: 12px 17px;
    border-radius: 6px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.button:hover{
    background-color: #2d63f7;
}
.button i{
    color: #fff;
    font-size: 20px;
}
.button button{
    border: none;
    background: none;
    outline: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.wrapper{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}
.open-popup{
    visibility: visible;
    width: 100%;
    height: 100vh;
}

.minidiv{
    width: 700px;
    height: 50vh;
    background-color:#f3f3f3 ;
    border-radius: 15px;
    border: none; 
}
.headSection{
    display: flex;
    align-items: center;
    padding: 13px 32px;
    gap: 10px;
}
textarea{
    width: 600px;
    height: 27vh;
    border: 1px solid #ddd;
    resize: none;
    background-color:rgb(218, 218, 218);
    outline: none;
    border-radius: 10px;
    padding: 12px;
    margin-left: 40px;
    font-size: 20px;
    font-weight: 500;
    color: #040404;
}
.minidiv .buttondiv{
    display: flex;
    justify-content: flex-end;
    margin-right: 45px;
    margin-top: 15px;
}
.minidiv .buttondiv button{
    margin-left: 20px;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 17px;
    outline: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cancel{
    background-color: #f082ac;
}
.cancel:hover{
    background-color: #e74e8b;
}
.send:hover{
    background-color: #275df1;
}
.send{
    background-color: #6f93f6;
}