.comments-main {
    color: #302f2f;
    background-color: #dadada;
    width: 820px;
    margin-top: 60px;
    margin-left: 330px;
    margin-bottom: 60px;
    border-radius: 10px;
}
.comments-section {
    margin-left: 160px;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comments-topic-title {
    padding-top: 12px;
    font-weight: 400;
}
/* Comment Box */
.comment-box {
    background-color: #f7f7f7;
    width: 500px;
    margin-bottom: 10px;
    border-radius: 6px;
}
.comment-upper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 12px;
    margin-left: 10px;
    margin-right: 10px;
}
.comment-upper-left img {
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.comment-upper-middle {
    position: absolute;
    left: 50px;
}

.comment-lower {
    margin-top: 24px;
    margin-bottom: 18px;
    margin-left: 10px;
    margin-right: 10px;
}
.comment-date {
    color: grey;
    font-size: 12px;
}
.comment-user {
    font-weight: 500;
}
.comment-id {
    font-size: 18px;
    transform: scaleX(0.9);
    transform-origin: 0 0;
    color: rgb(183, 183, 183);
}

/* Comment Form */
.comment-form {
    width: 320px;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 90px;
}

.form-title {
    font-weight: 400;
    color: grey;
    text-decoration: underline;
    text-underline-offset: 3px;
} 
.row-label {
    color: grey;
}

.row-field {
    width: 320px;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 6px;
}
.user, 
.email,
.comment {
    font-family: Roboto, Arial;
    width: 306px;
    background-color: transparent;
    border-width: 0px;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 5px;
}
.comment {
    height: 120px; 
    resize: none;
}
input::placeholder, textarea::placeholder {
    font-family: Roboto, Arial;
    opacity: 0.8;
}
input:focus, textarea:focus {
    outline: none;
}

.send-button-text {
    padding-top: 2.5px;
    padding-bottom: 1px;
    padding-left: 6px;
    padding-right: 7px;
    margin-top: 6px;
}

.small-alerts-ok {
    color:chartreuse;
    font-size: 11px;
}
.small-alerts-nok {
    color: crimson;
    font-size: 11px;
}