/**
 * Vendor Links CSS
 * 
 * This file contains styles for the vendor links functionality
 */

/* Purple color for vendor links icon */
.text-purple {
    color: #8a2be2 !important; /* BlueViolet color */
}

/* Background color for vendor links icon container */
.bg-purple-100 {
    background-color: rgba(138, 43, 226, 0.1) !important;
}

/* Text color for vendor links badges */
.text-purple-700 {
    color: #6b21a8 !important;
}

/* Background color for vendor links badges */
.bg-purple-100 {
    background-color: rgba(138, 43, 226, 0.1) !important;
}

/* Vendor link card styles */
.vendor-link-card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vendor-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Vendor link OTP input styles */
.otp-input {
    letter-spacing: 0.5em;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
}

/* Vendor link copy button styles */
.copy-btn {
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

/* Vendor link status badges */
.badge-active {
    background-color: #10b981;
    color: white;
}

.badge-expired {
    background-color: #ef4444;
    color: white;
}

.badge-used {
    background-color: #6b7280;
    color: white;
}