.parking-spot {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.parking-spot:hover:not(.occupied) {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    border-color: #3b82f6;
}

.ticket {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.barcode-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    padding: 20px;
}

.hidden { display: none !important; }

@media (max-width: 768px) {
    .parking-spot { width: 50px; height: 50px; font-size: 1rem; }
}