/* ========================================
   INLINE COMMENT SECTION STYLES
   ======================================== */

/* Main Comment Section Container */
.inline-comment-section {
    display: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 0.5px solid #4a4b53;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
}

.inline-comment-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RULES SECTION
   ======================================== */

.comment-rules-section {
    margin-bottom: 25px;
}

.comment-rules-container {
    display: flex !important;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 25px;
    margin: 0;
    background-color: #191919 !important;
    border: 1px solid #4a4b53 !important;
    border-radius: 17px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.rule-icon.check-icon {
    background-color: #4caf50 !important;
    color: #ffffff !important;
}

.rule-icon.cross-icon {
    background-color: #f44336 !important;
    color: #ffffff !important;
}

.rule-text {
    color: #8b8b8b !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* ========================================
   ADD YOUR TAKE SECTION
   ======================================== */

.comment-input-section {
    margin-bottom: 25px;
}

.comment-section-title {
    color: #8b8b8b !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.comment-textarea-container {
    margin-bottom: 25px;
}

.comment-textarea {
    width: 100% !important;
    min-height: 200px;
    padding: 20px;
    background-color: #191919 !important;
    border: 1px solid #4a4b53 !important;
    border-radius: 17px;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.comment-textarea:focus {
    border-color: #8d7001 !important;
}

.comment-textarea::placeholder {
    color: #666666 !important;
    font-weight: 300;
    opacity: 1;
}

/* ========================================
   ACTION BUTTONS SECTION
   ======================================== */

.comment-actions-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.comment-btn {
    flex: 1;
    min-width: 180px;
    height: 51px;
    border-radius: 42px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    outline: none;
}

.post-comment-btn {
    background-color: #0d0b03 !important;
    border: 1px solid #8d7001 !important;
    color: #f7931a !important;
}

.post-comment-btn:hover {
    background-color: #1a1609 !important;
    border-color: #a3820e !important;
    transform: translateY(-1px);
}

.ask-atlas-btn {
    background-color: #f7931a !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.3);
}

.ask-atlas-btn:hover {
    background-color: #ffa033 !important;
    box-shadow: 0 4px 12px rgba(247, 147, 26, 0.5);
    transform: translateY(-1px);
}

.btn-text {
    line-height: 1.1;
}

/* ========================================
   AUTO-WARN TEXT
   ======================================== */

.comment-auto-warn-text {
    color: #8b8b8b !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .inline-comment-section {
        margin-top: 20px;
        padding-top: 20px;
    }

    .comment-rules-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .comment-section-title {
        font-size: 18px;
    }

    .comment-textarea {
        min-height: 150px;
        padding: 15px;
        font-size: 14px;
    }

    .comment-actions-section {
        flex-direction: column;
        gap: 10px;
    }

    .comment-btn {
        width: 100%;
        min-width: 100%;
        font-size: 16px;
    }

    .rule-text {
        font-size: 14px;
    }

    .comment-auto-warn-text {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .comment-rules-container {
        padding: 12px;
        gap: 12px;
    }

    .rule-item {
        width: 100%;
    }

    .comment-textarea {
        min-height: 120px;
        padding: 12px;
    }

    .comment-btn {
        height: 45px;
        font-size: 15px;
    }
}

