/* .text-primary {
    color: aqua !important;
}

.bg-primary {
    background-color: aqua !important;
} */

        /* Snackbar styles */
        .snackbar-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .snackbar {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            width: 60px;
            height: 60px;
            transition: all 0.3s ease;
        }
        
        .snackbar.expanded {
            width: 300px;
            height: auto;
        }
        
        .snackbar-toggle {
            width: 60px;
            height: 60px;
            background: #008F91;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .snackbar.expanded .snackbar-toggle {
            transform: rotate(45deg);
            background: #ef4444;
        }
        
        .snackbar-content {
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .snackbar.expanded .snackbar-content {
            opacity: 1;
            visibility: visible;
        }
        
        .snackbar-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
            font-size: 18px;
        }
        
        .contact-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .contact-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #4b5563;
            padding: 10px 5px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        
        .contact-option:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
        }
        
        .contact-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        .contact-text {
            font-size: 12px;
            text-align: center;
        }
        
        .whatsapp { color: #25D366; }
        .email { color: #EA4335; }
        .facebook, .facebook-f { color: #1877F2; }
        .instagram { color: #E4405F; }
        .twitter { color: #1DA1F2; }
        .x { color: #000000; }
        .telegram { color: #0088CC; }
        .youtube { color: #EA4335; }
        .linkedin, .linkedin- { color: #1DA1F2; }

        
        /* Responsive styles */
        @media (max-width: 640px) {
            .snackbar.expanded {
                width: calc(100vw - 40px);
                right: 10px;
                bottom: 10px;
            }
            
            .contact-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .snackbar-container {
                right: 10px;
                bottom: 10px;
            }
        }

        .component-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            margin-bottom: 2rem;
            overflow: hidden;
        }
        .component-header {
            background: #4e73df;
            background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
            color: white;
            padding: 1rem 1.5rem;
        }
        .component-body {
            padding: 1.5rem;
        }
        .linked-item {
            background-color: #f8f9fa;
            border-radius: 5px;
            padding: 0.5rem 1rem;
            margin: 0.5rem 0.5rem 0.5rem 0;
            display: inline-flex;
            align-items: center;
        }
        .linked-items-container {
            min-height: 55px;
            border: 1px solid #e3e6f0;
            border-radius: 0.35rem;
            padding: 0.5rem;
            margin-top: 1rem;
            background-color: #f8f9fc;
        }
        .select2-container--default .select2-selection--multiple {
            border: 1px solid #d1d3e2;
            border-radius: 0.35rem;
            min-height: calc(1.5em + 1rem + 2px);
            padding: 0.5rem;
        }
        .component-footer {
            background-color: #f8f9fa;
            padding: 1rem 1.5rem;
            border-top: 1px solid #e3e6f0;
        }
        .badge-printer {
            background-color: #4e73df;
            color: white;
        }
        .badge-ink {
            background-color: #36b9cc;
            color: white;
        }
        .badge-accessory {
            background-color: #1cc88a;
            color: white;
        }
        .instruction-text {
            color: #858796;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .section-title {
            border-bottom: 2px solid #e3e6f0;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            color: #5a5c69;
        }

 a.linked-items {
    font-weight: 700;
    border: 1px solid #008F91;
    padding: 2px 6px;
    border-radius: 20px;
    margin-right: 3px;
 }

 a.linked-items:hover {
    background-color: #008F91;
    color: #ffffff !important;
 }