/* Reset et base */
*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #34495e;
    background-color: #f5f7fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Composants communs */
.card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 20px;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn {
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-sm {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.btn-success {
    background-color: #2ecc71;
    color: white;
}

.btn-success:hover {
    background-color: #27ae60;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-filter {
    background-color: #ecf0f1;
    color: #34495e;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
}

.btn-filter:hover {
    background-color: #d6dbdf;
}

.btn-filter .count {
    background-color: #3498db;
    color: white;
    border-radius: 10px;
    padding: 0 8px;
    margin-left: 8px;
    font-size: 12px;
}

/* Colors */
.success {
    color: #2ecc71;
    background-color: #2ecc71;
}

.warning {
    color: #f39c12;
    background-color: #f39c12;
}

.danger {
    color: #e74c3c;
    background-color: #e74c3c;
}

/* En-tête */
.main-header {
    background-color: #2c3e50;
    color: white;
    height: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-right: 20px;
}

.main-nav ul li a {
    color: #88a2bc;
    text-decoration: none;
    font-size: 16px;
}

.main-nav ul li a.active {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-bar {
    margin-right: 20px;
}

.search-bar input {
    background-color: #445566;
    border: none;
    border-radius: 15px;
    padding: 8px 15px;
    color: white;
    width: 180px;
}

.search-bar input::placeholder {
    color: #88a2bc;
}

.user-profile {
    background-color: #3498db;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

/* En-tête de page */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 20px 0;
}

.page-header h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.breadcrumb {
    color: #7f8c8d;
    font-size: 14px;
}

.global-score {
    background: white;
    border-radius: 5px;
    padding: 15px 20px;
    text-align: right;
}

.global-score span {
    color: #7f8c8d;
    font-size: 14px;
    display: block;
}

.global-score strong {
    color: #e67e22;
    font-size: 24px;
    font-weight: 700;
}

/* Onglets */
.tabs {
    margin-bottom: 20px;
}

.tabs ul {
    display: flex;
    list-style: none;
    background: white;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.tabs ul li {
    flex: 1;
    text-align: center;
}

.tabs ul li a {
    display: block;
    padding: 10px;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
}

.tabs ul li.active {
    background-color: #3498db;
}

.tabs ul li.active a {
    color: white;
}

/* Sections */
section {
    margin-bottom: 40px;
}

h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Barres horizontales */
.horizontal-bars {
    margin-top: 20px;
}

.bar-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.bar-item .label {
    width: 180px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bar-item .bar {
    flex: 1;
    height: 24px;
    background-color: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 10px;
}

.bar-item .bar-fill {
    height: 100%;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.bar-item .value {
    width: 60px;
    text-align: right;
    font-weight: 700;
}

.bar-item.total {
    margin-top: 20px;
    font-weight: 700;
}

/* Graphique Donut */
.donut-chart-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.donut-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: polygon(50% 50%, 50% 0%, calc(50% + 50% * cos(var(--start) * 1deg)) calc(50% - 50% * sin(var(--start) * 1deg)), calc(50% + 50% * cos(var(--end) * 1deg)) calc(50% - 50% * sin(var(--end) * 1deg)));
    transform: rotate(90deg);
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-center strong {
    font-size: 22px;
    color: #2c3e50;
}

.donut-center span {
    font-size: 16px;
    color: #7f8c8d;
}

.donut-legend {
    margin-left: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    margin-right: 10px;
}

.stats {
    margin-top: 20px;
    color: #7f8c8d;
}

.stats p {
    margin-bottom: 5px;
}

/* Critères prioritaires */
.priority-criteria {
    margin-top: 20px;
}

.priority-bar {
    margin-bottom: 30px;
}

.priority-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.priority-code {
    font-size: 14px;
    margin-right: 10px;
    font-weight: bold;
}

.priority-name {
    flex: 1;
    font-size: 14px;
}

.priority-score {
    font-size: 16px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.priority-bar-visual {
    margin: 5px 0;
}

.progress-bar {
    height: 10px;
    background-color: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    border-radius: 5px;
}

/* Nouvelles classes pour le graphique circulaire */
.chart-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}

.circle-chart {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.circular-chart {
    display: block;
    max-width: 100%;
}

.circle-bg {
    fill: none;
    stroke: #ecf0f1;
    stroke-width: 3.8;
}

.circle-success {
    fill: none;
    stroke: #2ecc71;
    stroke-width: 3.8;
    stroke-linecap: round;
}

.circle-warning {
    fill: none;
    stroke: #f39c12;
    stroke-width: 3.8;
    stroke-linecap: round;
}

.circle-danger {
    fill: none;
    stroke: #e74c3c;
    stroke-width: 3.8;
    stroke-linecap: round;
}

.chart-number {
    font-size: 0.5em;
    line-height: 1;
    text-anchor: middle;
    fill: #2c3e50;
    font-weight: bold;
}

.chart-label {
    font-size: 0.3em;
    line-height: 1;
    text-anchor: middle;
    fill: #7f8c8d;
}

/* Styles pour l'historique qualité */
.quality-history-container {
    padding: 10px;
}

.quality-history {
    position: relative;
    height: 120px !important;
    width: 100%;
    margin-bottom: 10px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    flex-wrap: wrap;
}

.chart-legend .legend-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.legend-color.global {
    background-color: rgba(52, 152, 219, 1);
}

.help-link {
    color: #3498db;
    text-decoration: underline;
}

/* Détail fiche */
.fiche-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ecf0f1;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.fiche-id {
    font-weight: 700;
    color: #34495e;
}

.fiche-actions {
    display: flex;
    align-items: center;
}

.link-btn {
    color: #3498db;
    text-decoration: none;
    margin-right: 20px;
}

.error-count {
    color: #e74c3c;
}

/* Liste des critères */
.criteres-list {
    margin-bottom: 20px;
}

.critere-header {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
    padding: 10px 15px;
    border-radius: 3px;
    font-weight: 700;
    margin-bottom: 5px;
}

.critere-name {
    flex: 1;
}

.critere-status {
    width: 60px;
    text-align: center;
}

.critere-action {
    width: 80px;
    text-align: right;
}

.critere-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #ecf0f1;
}

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

.critere-item.ai-detected {
    background-color: #f0f6fc;
    border: 1px solid #3498db;
    border-radius: 3px;
}

.status-ok {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #2ecc71;
    color: white;
    text-align: center;
}

.status-error {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #e74c3c;
    color: white;
    text-align: center;
}

.status-warning {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #f39c12;
    color: white;
    text-align: center;
}

.status-ai {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background-color: #9b59b6;
    color: white;
    text-align: center;
    font-size: 12px;
}

.critere-action a {
    color: #3498db;
    text-decoration: underline;
}

/* Module IA */
.ai-module {
    background-color: #fff8f7;
    border: 1px solid #e74c3c;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.ai-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ai-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: #9b59b6;
    color: white;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
}

.ai-header h5 {
    font-size: 16px;
    color: #9b59b6;
    margin: 0;
}

.ai-content p {
    margin-bottom: 5px;
}

.ai-suggestion {
    color: #3498db;
}

/* Commentaire administrateur */
.admin-comment {
    margin-bottom: 20px;
}

.admin-comment h5 {
    font-size: 14px;
    margin-bottom: 10px;
}

.admin-comment textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    resize: none;
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
}

/* Boutons d'action */
.action-buttons {
    display: flex;
    gap: 20px;
}

/* Sous-onglets */
.sub-tabs {
    margin-bottom: 20px;
}

.sub-tabs ul {
    display: flex;
    list-style: none;
    background: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
}

.sub-tabs ul li {
    padding: 10px 20px;
}

.sub-tabs ul li a {
    color: #34495e;
    text-decoration: none;
    font-size: 14px;
}

.sub-tabs ul li.active {
    background-color: #3498db;
}

.sub-tabs ul li.active a {
    color: white;
}

/* Tableau des critères */
.critere-table {
    width: 100%;
}

.critere-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 80px 80px 100px;
    background-color: #f5f7fa;
    padding: 10px;
    border-radius: 3px;
    font-weight: 700;
    margin-bottom: 5px;
}

.critere-table-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 80px 80px 100px;
    padding: 10px;
    border-bottom: 1px solid #ecf0f1;
    align-items: center;
}

.critere-table-row:last-child {
    border-bottom: none;
}

.col-code {
    font-size: 14px;
}

.col-name {
    font-size: 14px;
}

.col-score {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.col-status {
    text-align: center;
}

.col-count {
    font-size: 14px;
    text-align: center;
}

.col-action {
    text-align: center;
}

/* Pied de page */
.main-footer {
    background-color: #2c3e50;
    color: #7f8c8d;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
}

/* Styles pour le système de gamification */
.gamification-card {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
}

.gamification-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gamification-progress {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.progress-circle-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-circle {
    width: 100px;
    height: 100px;
}

.circle-progress {
    fill: none;
    stroke: #3498db;
    stroke-width: 3.8;
    stroke-linecap: round;
}

.progress-percentage {
    font-size: 0.6em;
    line-height: 1;
    text-anchor: middle;
    fill: #2c3e50;
    font-weight: bold;
}

.progress-label {
    font-size: 0.35em;
    line-height: 1;
    text-anchor: middle;
    fill: #7f8c8d;
}

.level-indicator {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-level {
    font-weight: 600;
    color: #3498db;
}

.next-level {
    font-size: 14px;
    color: #7f8c8d;
}

.gamification-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat-item {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

.badges-container {
    grid-column: 1;
}

.badges-container h5,
.challenge-container h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.badges-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-icon.gold {
    background-color: #f1c40f;
}

.badge-icon.silver {
    background-color: #bdc3c7;
}

.badge-icon.bronze {
    background-color: #d35400;
}

.badge-icon.special {
    background: linear-gradient(135deg, #3498db, #9b59b6);
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.badge-description {
    font-size: 12px;
    color: #7f8c8d;
}

.challenge-container {
    grid-column: 2;
}

.challenge-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.challenge-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.challenge-description {
    font-size: 12px;
    color: #7f8c8d;
}

.challenge-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.challenge-progress .progress-bar {
    flex: 1;
}

.progress-text {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
    width: 40px;
    text-align: right;
}

/* Styles pour la popup et ses composants */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    border-radius: 5px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.close-popup {
    background: none;
    border: none;
    font-size: 24px;
    color: #7f8c8d;
    cursor: pointer;
}

.popup-body {
    padding: 20px;
}

.error-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.error-detail-table th, 
.error-detail-table td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    vertical-align: top;
}

.error-detail-table th {
    background-color: #f8f9fa;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

.error-description {
    font-weight: 500;
    color: #e74c3c;
}

.error-content {
    background-color: #f8f9fa;
    font-family: monospace;
    font-size: 14px;
    padding: 8px !important;
    border-radius: 3px;
}

.error-adt-comment textarea,
.error-ot-comment textarea {
    width: 100%;
    min-height: 80px;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    padding: 8px;
    resize: vertical;
}

.ot-response.empty {
    color: #95a5a6;
    font-style: italic;
}

.response-date {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
}

.error-actions {
    white-space: nowrap;
    text-align: center;
}

.action-tooltip, 
.action-history {
    display: inline-block;
    margin: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    cursor: pointer;
    position: relative;
}

.action-tooltip i, 
.action-history i {
    color: #3498db;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #34495e;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 5px;
}

/* Historique des échanges */
.error-history {
    display: none;
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.error-history h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2c3e50;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e2e8f0;
}

.timeline-marker.adt {
    background-color: #3498db;
    border-color: #3498db;
}

.timeline-marker.ot {
    background-color: #f39c12;
    border-color: #f39c12;
}

.timeline-content {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 12px;
}

.timeline-date {
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.popup-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Animation pour la popup */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

/* Media queries pour responsive */
@media (max-width: 1024px) {
    .grid-2-columns {
        grid-template-columns: 1fr;
    }
    
    .donut-chart-container {
        flex-direction: column;
    }
    
    .donut-legend {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-actions {
        margin-top: 15px;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .filters-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filters-row div:last-child {
        margin-top: 10px;
        width: 100%;
    }
    
    .ot-table th:nth-child(5), 
    .ot-table td:nth-child(5) {
        display: none;
    }
    
    .fiche-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fiche-actions {
        margin-top: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .critere-table-header, .critere-table-row {
        grid-template-columns: 60px 1fr 80px 60px 60px 80px;
    }
    
    .gamification-container {
        grid-template-columns: 1fr;
    }
    
    .badges-container, 
    .challenge-container {
        grid-column: 1;
    }
    
    .progress-circle-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gamification-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ot-table th:nth-child(3), 
    .ot-table td:nth-child(3), 
    .ot-table th:nth-child(4), 
    .ot-table td:nth-child(4) {
        display: none;
    }
    
    .bar-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bar-item .label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .bar-item .value {
        align-self: flex-end;
    }
    
    .priority-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .priority-score {
        align-self: flex-end;
    }
    
    .critere-table-header, .critere-table-row {
        grid-template-columns: 50px 1fr 70px;
    }
    
    .col-status, .col-count, .col-action {
        display: none;
    }
}