/* Site Thread Tracker Styles - Page Specific */
.tracker-page .author-section {
    background: var(--bg-dark, #2a2a2a);
    border: 2px solid var(--border-color, #444);
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
}

.tracker-page .author-header {
    font-size: 3em;
    color: var(--text-primary, #fff);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-light, #555);
    text-shadow: none;
	font-family: var(--font-title);
}

.tracker-page .author-header a {
    color: var(--accent1);
    text-decoration: none;
    text-shadow: none;
}

.tracker-page .author-header a:hover {
    color: var(--accent2);
}

.tracker-page .thread-count {
    font-size: 16px;
    color: var(--text-muted, #666);
    font-weight: normal;
    margin-left: 10px;
    text-shadow: none;
}

.tracker-page .thread-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.tracker-page .thread-column {
    background: var(--bg-darker, #1a1a1a);
    border: 1px solid var(--border-dark, #333);
    border-radius: 6px;
    padding: 15px;
    min-height: 200px;
}

.tracker-page .thread-column h3 {
    font-size: 18px;
    color: var(--text-primary, #fff);
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color, #444);
    text-shadow: none;
}

.tracker-page .thread-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tracker-page .thread-item {
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.tracker-page .thread-item.turn-green {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.tracker-page .thread-item.turn-red {
    background: #ffebee;
    border-left-color: #f44336;
}

.tracker-page .thread-item:hover {
    transform: translateY(-2px);
}

.tracker-page .thread-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: none;
}

.tracker-page .thread-title a {
    color: var(--accent1);
    text-decoration: none;
    text-shadow: none;
}

.tracker-page .thread-title a:hover {
    color: var(--accent2);
    text-decoration: underline;
}

.tracker-page .thread-location {
    font-size: 11px;
    color: var(--text-tertiary, #777);
    margin-bottom: 4px;
    text-shadow: none;
}

.tracker-page .thread-character {
    font-weight: 600;
    font-size: 13px;
    color: var(--accent1);
    margin-bottom: 4px;
    text-shadow: none !important;
    font-family: inherit !important;
}

.tracker-page .thread-lastpost {
    font-size: 11px;
    color: var(--text-secondary, #999);
    text-shadow: none;
}

.tracker-page .thread-meta {
    font-size: 12px;
    color: var(--text-secondary, #999);
    text-shadow: none;
}

.tracker-page .character-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--accent1);
    text-shadow: none !important;
    font-family: inherit !important;
}

.tracker-page .thread-info {
    color: var(--text-tertiary, #777);
    text-shadow: none;
}

.tracker-page .no-threads {
    text-align: center;
    color: var(--text-muted, #666);
    font-style: italic;
    padding: 40px 0;
    text-shadow: none;
}

.tracker-page .no-activity {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-dark, #2a2a2a);
    border: 2px solid var(--border-color, #444);
    border-radius: 8px;
    margin: 20px 0;
}

.tracker-page .no-activity p {
    font-size: 16px;
    color: var(--text-secondary, #999);
    text-shadow: none;
}

.tracker-page .tracker-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.tracker-page .tracker-page-header {
    margin-bottom: 30px;
}

.tracker-page .tracker-page-header h1 {
    font-size: 32px;
    color: var(--text-primary, #fff);
    margin: 0 0 10px 0;
    text-shadow: none;
		font-family: var(--font-header);
}

.tracker-page .tracker-page-header p {
    color: var(--text-secondary-light, #aaa);
    font-size: 14px;
    margin: 0;
    text-shadow: none;
}

.tracker-page .tracker-legend-green {
    color: #4caf50;
    font-weight: 600;
}

.tracker-page .tracker-legend-red {
    color: #f44336;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tracker-page .thread-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .tracker-page .author-section {
        padding: 15px;
    }
    
    .tracker-page .author-header {
        font-size: 22px;
    }
    
    .tracker-page .thread-column {
        padding: 12px;
    }
    
    .tracker-page .thread-column h3 {
        font-size: 18px;
    }
    
    .tracker-page .tracker-container {
        padding: 15px;
    }
    
    .tracker-page .tracker-page-header h1 {
        font-size: 28px;
    }
}