.license-exchanged-badge {
    background-color: #2196F3;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.license-exchanged-badge .exchange-icon {
    font-size: 14px;
}


.license-key-container.has-exchange {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8f9fa;
}

.license-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.license-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.license-update-info {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.license-update-info-date {
    font-size: 12px;
    color: #666;
}

.license-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.old-license, .new-license {
    padding: 15px;
    border-radius: 6px;
    background: #fff;
}

.old-license {
    background: #f8f9fa;
}

.new-license {
    background: #e8f5e9;
    border: 2px solid #4CAF50;
}

.license-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.license-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-key {
    flex: 1;
    padding: 12px;
    background: #fff;
    border-radius: 4px;
    font-family: monospace;
    font-size: 16px;
    border: 1px solid #e0e0e0;
}

.license-key.old {
    color: #666;
}

.license-key.new {
    color: #2e7d32;
    border-color: #81c784;
    font-weight: 600;
}

.license-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.separator-icon {
    font-size: 24px;
    color: #2196F3;
}

.exchange-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-icon {
    font-size: 14px;
}

.copy-button {
    padding: 8px 16px;
    background: #e3f2fd;
    color: #1976d2;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-button:hover {
    background: #bbdefb;
}

.copy-button.copied {
    background: #4CAF50;
    color: white;
}

.wclm-success-steps {
    margin: 40px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 40px 20px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-header h2 {
    font-size: 32px;
    margin: 0 0 10px;
    color: white;
}

.success-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.wclm-content-container {
    padding: 30px;
}

.wclm-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-icon {
    font-size: 24px;
    margin-right: 10px;
}

.section-header h3 {
    font-size: 20px;
    margin: 0;
    color: #2c3338;
}

.license-key-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
}

.license-key {
    flex: 1;
    background: none;
    padding: 0;
    margin: 0;
    font-family: monospace;
    font-size: 16px;
    color: #1a1a1a;
    word-break: break-all;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #cbd5e0;
}

.copy-button.copied {
    background: #48bb78;
    color: white;
}

.copy-icon {
    font-size: 16px;
}

.copy-text {
    font-size: 14px;
    font-weight: 500;
}

.wclm-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 5px;
    border: none;
    cursor: pointer;
}

.manual-button {
    background: #e3f2fd;
    color: #1976d2;
}

.help-button, .support-button {
    background: #fff3e0;
    color: #f57c00;
}

.manual-icon, .help-icon, .support-icon {
    margin-right: 8px;
    font-size: 18px;
}

.wclm-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .wclm-content-container {
        padding: 20px;
    }
    
    .success-header {
        padding: 30px 15px;
    }
    
    .success-header h2 {
        font-size: 24px;
    }
    
    .success-subtitle {
        font-size: 16px;
    }

    .license-key-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .copy-button {
        width: 100%;
        justify-content: center;
    }

    .support-buttons {
        flex-direction: column;
    }

    .help-button, .support-button {
        width: 100%;
    }
}

.verification-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.active .status-indicator {
    background-color: #48bb78;
    box-shadow: 0 0 0 2px #c6f6d5;
}

.inactive .status-indicator {
    background-color: #e53e3e;
    box-shadow: 0 0 0 2px #fed7d7;
}

.error .status-indicator {
    background-color: #e53e3e;
    box-shadow: 0 0 0 2px #fed7d7;
}

.support-shortcode-container {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wclm-verification-results {
    margin-top: 20px;
}

.message-content {
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
}

.message-content.success {
    background-color: #f0fff4;
    border: 1px solid #68d391;
    color: #2f855a;
}

.message-content.warning {
    background-color: #fff5f5;
    border: 1px solid #fc8181;
    color: #c53030;
}

.message-content p {
    margin: 10px 0;
}

.message-content strong {
    display: block;
    margin-bottom: 5px;
}

.wclm-alert {
    background-color: #fff3cd;
    border: 2px solid #ffeeba;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wclm-alert .alert-icon {
    font-size: 24px;
}

.wclm-alert p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.highlight-section {
    border: 2px solid #4CAF50;
    background: #f9fff9;
}

.section-description {
    color: #666;
    margin: 0 0 20px;
    font-size: 15px;
}

.manual-button {
    background: #4CAF50;
    color: white;
    font-weight: 500;
    padding: 15px 30px;
    margin: 10px 0;
    width: 100%;
    justify-content: center;
    font-size: 16px;
}

.manual-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.support-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.help-button, .support-button {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    text-align: center;
}

.support-button {
    background: #e8f5e9;
    color: #2e7d32;
}

.support-button:hover {
    background: #c8e6c9;
}

.license-actions {
    margin-bottom: 20px;
}

.license-action-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
}

.license-info {
    margin-bottom: 10px;
}

.license-key-display {
    font-family: monospace;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 4px;
    margin: 5px 0;
    word-break: break-all;
}

.exchange-button {
    background: #e3f2fd;
    color: #1976d2;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.exchange-button:hover:not(:disabled) {
    background: #bbdefb;
}

.exchange-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.exchange-icon {
    font-size: 16px;
}

.new-license-key {
    background: #f0fff4;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.new-license-key code {
    font-family: monospace;
    font-size: 16px;
    color: #2e7d32;
}

@media (max-width: 768px) {
    .license-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .license-value {
        flex-direction: column;
        gap: 10px;
    }

    .copy-button {
        width: 100%;
        justify-content: center;
    }
}

.product-exchange-info {
    display: inline-block;
    background-color: #2196F3;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 8px;
}

.manual-exchange-info {
    display: inline-block;
    background-color: #2196F3;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 8px;
}

.manual-update-date {
    font-size: 12px;
    color: #666;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .manual-update-date {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

.support-columns {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.support-column {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.invoice-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.invoice-buttons {
    margin-top: 1rem;
}

.invoice-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.invoice-button:hover {
    background-color: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.invoice-icon {
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .support-columns {
        flex-direction: column;
    }
    
    .support-column + .support-column {
        margin-top: 1rem;
    }
}