<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==============================================
          Q&amp;A Single Page Specific Styles (REVISED V6 - With Boxed Answers)
          ============================================== */

body {
    background-color: #f8f9fa;
}

.page-content-wrapper {
    padding: 40px 0;
}

.question-page-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: flex-start;
}

.question-main-content &gt; .breadcrumb {
    margin-bottom: 20px;
}

.question-main-content .breadcrumb a {
    color: var(--primary-color);
}

/* --- Question &amp; Answer Common Card Structure --- */
.qa-post {
    background-color: var(--component-bg-color);
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

/* Visual distinction for the main question post */
.question-post {
    background-color: #fdfdff;
    border: 1px solid #e0e6f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vote-control {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vote-btn {
    background: none;
    border: 1px solid var(--medium-gray-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--dark-gray-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .vote-btn:hover:not(:disabled) {
        background-color: var(--light-gray-color);
        color: var(--primary-color);
    }

    .vote-btn.active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

.vote-score {
    font-family: 'PinarRegular', sans-serif;
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 5px 0;
    transition: transform 0.2s ease-in-out;
}

    .vote-score.score-pop {
        transform: scale(1.3);
    }

.qa-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .qa-body .question-title {
        font-family: 'PinarBold', sans-serif;
        font-size: 2.2rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .qa-body .rich-content-wrapper {
        margin-bottom: 30px;
        flex-grow: 1;
    }

.question-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

    .question-tags .tag {
        background-color: #eaf4ff;
        color: var(--primary-hover-color);
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
    }

        .question-tags .tag:hover {
            background-color: #d4e7ff;
        }

.actions-author-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray-color);
    margin-top: auto;
}

.actions-group {
    display: flex;
    gap: 10px;
}

    .actions-group .btn-link {
        color: var(--dark-gray-color);
        font-weight: 600;
        font-size: 14px;
    }

        .actions-group .btn-link:hover {
            color: var(--primary-color);
        }

        .actions-group .btn-link i {
            margin-left: 5px;
        }

.author-box {
    background-color: #f7f9fc;
    border: 1px solid var(--medium-gray-color);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .author-box .author-label {
        color: var(--dark-gray-color);
    }

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

    .author-info img {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

.author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.author-rep {
    font-weight: bold;
    color: var(--text-color);
}

/* --- Answers Section --- */
/* NEW: Boxed style for the entire answers section */
.answers-section {
    margin-top: 40px;
    background-color: var(--component-bg-color);
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

/* MODIFIED: Styling for the header within the new box */
.answers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray-color);
}

    .answers-header h2 {
        font-family: 'PinarBold', sans-serif;
        font-size: 1.8rem;
        margin: 0;
        display: flex; /* NEW: for icon alignment */
        align-items: center; /* NEW: for icon alignment */
    }
        /* NEW: Icon style */
        .answers-header h2 i {
            margin-left: 12px;
            color: var(--primary-color);
            font-size: 1.7rem;
        }

    .answers-header .sort-options {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .answers-header .sort-options .sort-label {
            font-size: 14px;
            font-weight: 600;
        }

    .answers-header .tosinso-dropdown {
        width: 180px;
    }

/* MODIFIED: Answer items no longer need their own border/bg unless accepted */
.answer-item {
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray-color); /* Added border back for separation inside the box */
    padding: 25px; /* Added padding */
    border-radius: var(--border-radius); /* Added radius */
    background-color: #fff; /* White background to stand out */
}

    .answer-item.is-accepted {
        border-right: 4px solid var(--success-color);
        background-color: #f0fff4;
    }

        .answer-item.is-accepted .vote-control .vote-btn.accept-answer {
            background-color: var(--success-color);
            border-color: var(--success-color);
            color: #fff;
        }

            .answer-item.is-accepted .vote-control .vote-btn.accept-answer i::before {
                content: '\f00c'; /* check icon */
            }

/* Collapsible Comments Section Styles */
.comments-section-wrapper {
    padding: 0;
    font-size: 14px;
    margin-bottom: 40px;
    margin-top: 0;
}

.toggle-comments-btn {
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-gray-color);
    margin-bottom: 15px;
    display: inline-block;
}

    .toggle-comments-btn:hover {
        color: var(--primary-color);
    }

    .toggle-comments-btn .arrow {
        display: inline-block;
        transition: transform 0.2s ease;
        margin-right: 5px;
    }

.comments-content.collapsed .arrow {
    transform: rotate(-90deg);
}

.comments-content {
    background-color: #f7f9fc;
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius);
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

    .comments-content.hidden {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        border: none;
    }

.comment-item {
    padding: 12px 15px;
    border-bottom: 1px solid #e1e5eb;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .comment-item:last-child {
        border-bottom: none;
    }

    .comment-item img.comment-avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin-top: 2px;
    }

.comment-body {
    flex-grow: 1;
}

.comment-item .comment-text {
    color: var(--dark-gray-color);
}

.comment-item .comment-meta {
    color: var(--text-color-muted);
    font-size: 12px;
}

    .comment-item .comment-meta a {
        font-weight: 600;
    }

.add-comment-btn {
    margin-top: 10px;
    font-size: 13px;
}

.answer-item.is-accepted .author-box,
.answer-item.is-accepted .comments-content {
    background-color: #e6f7f2;
    border-color: #b7e4d0;
}

/* FAQ section adjustments */
.faq-section .tosinso-accordion {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Your Answer Section --- */
.your-answer-section {
    margin-top: 40px;
    background-color: var(--component-bg-color);
    padding: 30px;
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius);
    scroll-margin-top: 100px;
}

    .your-answer-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .your-answer-section textarea {
        min-height: 200px;
        margin-bottom: 15px;
    }

/* --- Sidebar --- */
.question-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--component-bg-color);
    border: 1px solid var(--medium-gray-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-family: 'PinarBold', sans-serif;
    font-size: 1.3rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.widget-list {
    list-style: none;
}

    .widget-list li {
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray-color);
    }

        .widget-list li:last-child {
            border-bottom: none;
        }

        .widget-list li a:hover {
            color: var(--primary-hover-color);
        }

/* Styles for sidebar icons and extra info */
.question-stats-list .stat-item, .related-questions-list .related-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.question-stats-list .stat-label, .related-questions-list .related-item-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .question-stats-list .stat-label i {
        width: 16px;
        text-align: center;
        color: var(--dark-gray-color);
    }

.question-stats-list .stat-value {
    font-size: 15px;
}

.related-questions-list .related-item-meta {
    font-size: 12px;
    color: var(--text-color-muted);
    background-color: var(--light-gray-color);
    padding: 2px 8px;
    border-radius: 5px;
    flex-shrink: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .question-page-container {
        grid-template-columns: 1fr;
    }

    .question-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    /* FIXED: Add horizontal padding to the main wrapper on small screens */
    .page-content-wrapper {
        padding: 40px 15px;
    }

    .qa-post {
        flex-direction: column;
        gap: 15px;
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .answers-section, .your-answer-section {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .vote-control {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }

    .vote-score {
        font-size: 1.5rem;
    }

    .qa-body .question-title {
        font-size: 1.8rem;
    }

    .answers-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .answers-header .tosinso-dropdown {
            width: 100%;
        }
}
</pre></body></html>