/* content/tracker.css */

.tracker-container {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 15px;
}
.tracker-title {
    font-weight: 800;
    font-size: 15px;
    color: #000000;
    background-color: #f1f3f5;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tracker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}
/* Default building row */
.tracker-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13.5px;
    color: #ccc;
}
/* NEW: Styled green row for completed titles */
.tracker-row.ready {
    background-color: #40c057;
    color: #000000;
    font-weight: 700;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.status-dot.building { 
    background-color: #fab005; 
    box-shadow: 0 0 6px #fab005; 
}
/* Adjusted dot color for high contrast inside the green box */
.status-dot.ready { 
    background-color: #ffffff; 
    box-shadow: 0 0 6px #ffffff; 
}