/**
 * More Pages Styles
 */

/* Link list items */
a.list-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.list-item:hover {
    text-decoration: none;
}

/* Active list item */
#feed .list-item.active {
    border-color: #007acc;
    background-color: #f0f8ff;
}

/* Overlay controls - show on tablet and mobile */
@media (max-width: 1279px) {
    .overlay-controls {
        display: flex !important;
    }
}

/* Detail content spacing */
.right-content {
    padding: 3rem;
}

@media (max-width: 639px) {
    .right-content {
        padding: 2rem 1.5rem;
    }
}

/* More page content typography */
.more-section-title {
    padding: 2rem;
    font-size: 1.8rem;
}

.more-heading-large {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111b21;
    margin-bottom: 1rem;
}

.more-heading-medium {
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111b21;
    margin-bottom: 0.8rem;
}

.more-text {
    margin-bottom: 1.5rem;
}

.more-list {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.more-list-item {
    margin-bottom: 0.5rem;
}

/* Special text variations */
.more-text-muted {
    color: #667781;
    margin-top: 2rem;
}

.more-text-spaced {
    margin-bottom: 2rem;
}
/* Activity Log Styles */
.log-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 0.5rem;
}

.log-controls .btn {
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e0;
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.log-controls .btn:hover {
    background: #f7fafc;
}

.log-controls .btn-primary {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.log-stats {
    margin-left: auto;
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 600;
}

.log-table-container {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
}

.log-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.log-table thead {
    background: #f7fafc;
    border-bottom: 2px solid #e2e8f0;
}

.log-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.log-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.log-table tr:hover {
    background: #f7fafc;
}

.log-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .log-controls {
        flex-wrap: wrap;
    }
    
    .log-stats {
        width: 100%;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .log-table {
        font-size: 0.875rem;
    }
    
    .log-table th,
    .log-table td {
        padding: 0.5rem;
    }
}