* {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
html{
    background-color: rgb(238, 234, 230);
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 54%;
}
main h1{
    font-size: 30px;
    color: rgb(73, 48, 4);
}
.product { 
    width: 15rem;
    border-radius: 10px;
}
.user-photo { 
    width: 4rem;
}
.comment-box {
    background-color:rgb(202, 188, 169);
    padding: 20px;
    width: 500px;
    border-radius: 10px;
    font-size: 12px;
}
.buttons{ 
    display: flex;    
    justify-content: flex-end;
}
#comment {
    resize: none;
    width: 426px;
}

#comment-list {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.comment-card {
    background:rgb(202, 188, 169);
    border: 1px solid rgb(73, 48, 4);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 14px;
}
.comment-section{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.btn-trash {
    background-color: transparent;
    border-color: transparent;
    font-size: 20px;
    color: darkred;
    width: 40px;
    height: 40px;
}
.btn-trash:hover {
    box-shadow: gray 1px 1px 1px;
    border-color: gray;
    border-radius: 10px;
    cursor: pointer;
}
#button2comment {
    background-color: transparent;
    border-color: transparent;
    font-size: 20px;
    color: rgb(66, 60, 109);
    width: 40px;
    height: 40px;
}

#button2comment:hover{
    box-shadow: gray 1px 1px 1px;
    border-color: gray;
    border-radius: 10px;
    cursor: pointer;
}
.comment-datetime{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.5rem;
}