#mobile-short-comment {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #313131;
    padding: 15px;
    border-radius: 15px;
    line-height: 1.5; /* increases space between lines */
    font-weight: 550;
    cursor: pointer;
}

#mobile-full-comment {
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.comment-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
}

/* Title */
.comment-header h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Close button (X) */
#closeComments {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.comment-divider {
    display: block !important;
    width: 100%;
    height: 1px;
    margin: 12px 0;
    background-color: #7c7c7c !important;
}

/* Divider */
.comment-section hr {
    border: none;
    border-top: 3px solid #ffffff;
    margin: 12px 0;
}

.comment-section {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* horizontal centering */
    align-items: flex-start;     /* align items to the left */
}

.comment-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-right .reply-text-btn {
    display: inline-block !important;   /* override bootstrap */
    width: auto !important;             /* override bootstrap */
    background: none;
    border: none;
    padding: 5px 10px;
    margin: 0;
    margin-top: 10px;
    color: #ffffffff;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    border-radius: 20px;
}

textarea.form-control {
    background: transparent;
    color: white;
    border: none;
    border-bottom: 1px solid #888; /* grey bottom border */
    outline: none;
    box-shadow: none; /* remove Bootstrap's default shadow */
}

textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6); /* optional: softer white placeholder */
}

.comment-right .reply-text-btn:hover {
    background-color: rgba(121, 121, 121, 0.85);
}

.comment-button {
    padding: 10px 20px;
    background-color: #3ea6ff;
    color: black;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s ease; /* smooth transition */
}

.comment-button:hover {
    background-color: #5fb8ff; /* slightly lighter shade */
}