#overlay * {
    box-sizing: border-box;
}

#overlay {
    margin: 0px;
    font-family: Arial, sans-serif;
    background: #26262654;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;

}

#overlay .report-container {
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
    position: fixed;
    margin-bottom: 100%;
    top: 20px;
    overflow-y: scroll;
    z-index: 1;
    height: 90vh;
}

#overlay .header-of-report {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: row;

}

#overlay .profile-picture {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

#overlay .userdetail {
    font-size: 10px;
    font-weight: bold;
    color: #333;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

#overlay .userdetail span {
    display: block;
}

#overlay .close-btn {
    background: #4caf50;
    border: none;
    font-size: 20px;
    padding: 1px;
    cursor: pointer;
    color: #000;
    margin-bottom: 80px;
}

#overlay form label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

#overlay form input,
#overlay form textarea,
#overlay form button {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

#overlay textarea {
    resize: none;
    height: 80px;
}

#overlay .report-btn {
    background: #4caf50;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#overlay .report-btn:hover {
    background: #45a049;
}