/* =========================================================
   ADMIN COMMENTS
   Sadece yorum yonetimi sayfasi icin
   ========================================================= */

.admin-comments-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =========================================================
   PAGE HEADER
   ========================================================= */

.admin-comments-page .admin-page-header {
    margin-bottom: 0;
}

.admin-comments-page .admin-page-title {
    margin: 0;
}

.admin-comments-page .admin-page-description {
    max-width: 760px;
}

/* =========================================================
   LIST SECTION
   ========================================================= */

.admin-comments-list-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-comments-list-section .admin-section-header {
    margin-bottom: 0;
}

.admin-comments-list-section .admin-section-title {
    margin: 0;
}

/* =========================================================
   TABLE WRAP
   ========================================================= */

.admin-comments-list-section .admin-table-wrap {
    overflow: hidden;
}

.admin-comments-list-section .admin-table {
    min-width: 1280px;
}

.admin-comments-list-section .admin-table td {
    vertical-align: top;
}

/* =========================================================
   TABLE COLUMN CONTROL
   ========================================================= */

.admin-comments-list-section .admin-table th:nth-child(1),
.admin-comments-list-section .admin-table td:nth-child(1) {
    width: 70px;
    white-space: nowrap;
}

.admin-comments-list-section .admin-table th:nth-child(2),
.admin-comments-list-section .admin-table td:nth-child(2),
.admin-comments-list-section .admin-table th:nth-child(3),
.admin-comments-list-section .admin-table td:nth-child(3),
.admin-comments-list-section .admin-table th:nth-child(4),
.admin-comments-list-section .admin-table td:nth-child(4) {
    width: 90px;
    white-space: nowrap;
}

.admin-comments-list-section .admin-table th:nth-child(5),
.admin-comments-list-section .admin-table td:nth-child(5) {
    min-width: 180px;
}

.admin-comments-list-section .admin-table th:nth-child(6),
.admin-comments-list-section .admin-table td:nth-child(6) {
    min-width: 220px;
}

.admin-comments-list-section .admin-table th:nth-child(7),
.admin-comments-list-section .admin-table td:nth-child(7) {
    min-width: 340px;
}

.admin-comments-list-section .admin-table th:nth-child(8),
.admin-comments-list-section .admin-table td:nth-child(8) {
    width: 80px;
    white-space: nowrap;
    text-align: center;
}

.admin-comments-list-section .admin-table th:nth-child(9),
.admin-comments-list-section .admin-table td:nth-child(9) {
    width: 120px;
    white-space: nowrap;
}

.admin-comments-list-section .admin-table th:nth-child(10),
.admin-comments-list-section .admin-table td:nth-child(10) {
    min-width: 170px;
    white-space: nowrap;
}

/* =========================================================
   COMMENT CELL
   ========================================================= */

.admin-comments-table__comment {
    color: #333333;
    font-size: 14px;
    line-height: 1.75;
    word-break: break-word;
    white-space: normal;
    max-width: 420px;
}

/* =========================================================
   TEXT POLISH
   ========================================================= */

.admin-comments-list-section .admin-table td:nth-child(5),
.admin-comments-list-section .admin-table td:nth-child(6) {
    color: #222222;
    font-weight: 600;
}

.admin-comments-list-section .admin-table td:nth-child(10) {
    color: #666666;
    font-size: 13px;
}

/* =========================================================
   BADGE
   ========================================================= */

.admin-comments-list-section .admin-badge {
    min-width: 74px;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.admin-comments-list-section .admin-empty {
    margin-top: 0;
}

/* =========================================================
   VISUAL POLISH
   ========================================================= */

.admin-comments-page .admin-table-wrap {
    background: #ffffff;
}

.admin-comments-page .admin-section-title {
    color: #111111;
}

.admin-comments-page .admin-section-description {
    color: #666666;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
    .admin-comments-page {
        gap: 22px;
    }

    .admin-comments-list-section .admin-table {
        min-width: 1180px;
    }

    .admin-comments-table__comment {
        max-width: 360px;
    }
}

@media (max-width: 992px) {
    .admin-comments-page {
        gap: 20px;
    }

    .admin-comments-list-section .admin-table {
        min-width: 1080px;
    }

    .admin-comments-table__comment {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .admin-comments-list-section .admin-section-title {
        font-size: 18px;
    }

    .admin-comments-list-section .admin-table {
        min-width: 980px;
    }

    .admin-comments-table__comment {
        max-width: 280px;
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .admin-comments-page {
        gap: 18px;
    }

    .admin-comments-list-section .admin-table {
        min-width: 920px;
    }

    .admin-comments-list-section .admin-badge {
        min-width: 68px;
    }
}