/* ========================================
   BASE STYLES - SHARED COMPONENTS
   ======================================== */

/* Global Transitions */
* {
    transition: all 0.3s ease;
}

/* Common Box Shadows */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shadow-md {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Common Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Common Card Styles */
.card-base {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Common Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: white;
}

/* Common Status Colors */
.status-preparing {
    color: #ffc107;
}

.status-ready {
    color: #28a745;
}

.status-issued {
    color: #007bff;
}

.status-danger {
    color: #dc3545;
}

/* Common Badge Styles */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Common Animation Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Common Utility Classes */
.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-pulse {
    animation: pulse 1s ease-in-out;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-slide-in {
    animation: slideIn 0.3s ease;
}