.logs-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* HEADER */

.logs-page h1 {
    font-size: 26px;
    font-weight: 600;
}

/* TABLE */

.logs-table {
    width: 100%;
    border-collapse: collapse;
}

.logs-table thead {
    background: rgba(59,130,246,0.08);
}

.logs-table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
}

.logs-table td {
    padding: 14px 18px;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.logs-table tr:hover {
    background: rgba(59,130,246,0.05);
}

/* ACTION BADGE */

.log-action {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* TYPES */

.log-admin {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

.log-action-type {
    background: rgba(59,130,246,0.2);
    color: #3b82f6;
}

.log-system {
    background: rgba(34,197,94,0.2);
    color: #22c55e;
}

/* SCROLL */

.logs-table-wrapper {
    max-height: 650px;
    overflow-y: auto;
}

.logs-table-wrapper::-webkit-scrollbar {
    width: 6px;
}

.logs-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(59,130,246,0.3);
    border-radius: 10px;
}