/* Slates Widget Styles */
.slates-widget {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.slates-widget h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slates-widget h3 i {
    color: var(--primary-green);
}

.slates-list {
    margin-bottom: 20px;
}

.slate-platform {
    margin-bottom: 20px;
}

.slate-platform:last-child {
    margin-bottom: 0;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--bg-darker);
    border-radius: 6px;
    margin-bottom: 8px;
}

.platform-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.slate-count {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 500;
}

.slate-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 4px solid;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.slate-item:hover {
    background-color: var(--bg-darker);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}

.slate-item:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.slate-item:last-child {
    margin-bottom: 0;
}

/* Slate type colors */
.slate-item.main {
    background-color: rgba(0, 184, 148, 0.1);
    border-left-color: var(--primary-green);
}

.slate-item.main:hover {
    background-color: rgba(0, 184, 148, 0.2);
}

.slate-item.regular {
    background-color: rgba(119, 148, 176, 0.1);
    border-left-color: var(--info);
}

.slate-item.regular:hover {
    background-color: rgba(119, 148, 176, 0.2);
}

.slate-item.turbo {
    background-color: rgba(224, 162, 58, 0.1);
    border-left-color: var(--warning);
}

.slate-item.turbo:hover {
    background-color: rgba(224, 162, 58, 0.2);
}

.slate-item.late {
    background-color: rgba(155, 89, 182, 0.1);
    border-left-color: var(--purple);
}

.slate-item.late:hover {
    background-color: rgba(155, 89, 182, 0.2);
}

.slate-item.all-day {
    background-color: rgba(230, 126, 34, 0.1);
    border-left-color: var(--stat-bad);
}

.slate-item.all-day:hover {
    background-color: rgba(230, 126, 34, 0.2);
}

.slate-item.single {
    background-color: rgba(155, 89, 182, 0.1);
    border-left-color: var(--purple);
}

.slate-item.single:hover {
    background-color: rgba(155, 89, 182, 0.2);
}

.slate-item.early {
    background-color: rgba(127, 196, 161, 0.1);
    border-left-color: var(--success);
}

.slate-item.early:hover {
    background-color: rgba(127, 196, 161, 0.2);
}

.slate-item.showdown {
    background-color: rgba(216, 98, 76, 0.1);
    border-left-color: var(--danger);
}

.slate-item.showdown:hover {
    background-color: rgba(216, 98, 76, 0.2);
}

.slate-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slate-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.slate-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.slate-games {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.slate-time {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.start-time {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.entries {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.status {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 3px;
    text-align: center;
}

.status.upcoming {
    background-color: rgba(224, 162, 58, 0.2);
    color: var(--warning);
}

.status.active {
    background-color: rgba(127, 196, 161, 0.2);
    color: var(--success);
}

.status.completed {
    background-color: rgba(154, 145, 124, 0.2);
    color: var(--text-muted);
}

.btn-block {
    width: 100%;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slates-widget {
        padding: 15px;
    }
    
    .slate-item {
        padding: 10px;
    }
    
    .platform-header {
        padding: 6px 10px;
    }
    
    .slate-name {
        font-size: 0.85rem;
    }
    
    .slate-games,
    .start-time {
        font-size: 0.75rem;
    }
}