/* Add these styles to your style.css */

/* === SAVE SLOT SELECTION === */
#slot-selection-screen {
    position: fixed;
    display: none;
    font-family: 'Courier New', monospace;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    background: rgba(0,0,0,0.98);
}

.slot-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.slot-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.slot-number {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: bold;
}

.slot-delete-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid #ff3366;
    color: #ff3366;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.slot-delete-btn:hover {
    background: #ff3366;
    color: #fff;
}

.slot-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 1.2rem;
}

.slot-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slot-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.slot-stat:last-child {
    border-bottom: none;
}

.stat-label {
    color: #888;
    font-size: 0.8rem;
}

.stat-value {
    color: var(--accent);
    font-weight: bold;
}