/**
 * Save QR Code Button & Modal Styles
 */

/* Action Buttons Container */
.qr-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.qr-action-buttons button,
.qr-action-buttons a {
    flex: 1;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-height: 56px;
}

.qr-action-buttons .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Download Button - Match the purple gradient */
.download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
}

.download-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.download-btn:disabled {
    background: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed;
    transform: none;
}

/* Save Button - Green gradient */
.save-qr-btn {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    color: white !important;
}

.save-qr-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.save-qr-btn:disabled {
    background: #d5d5d5 !important;
    color: #888 !important;
    cursor: not-allowed;
    transform: none;
}

/* Login to Save Link */
.save-qr-btn-login {
    background: white !important;
    color: #27ae60 !important;
    border: 2px solid #27ae60 !important;
}

.save-qr-btn-login:hover {
    background: #27ae60 !important;
    color: white !important;
}

/* Responsive */
@media (max-width: 600px) {
    .qr-action-buttons {
        flex-direction: column;
    }
    
    .qr-action-buttons button,
    .qr-action-buttons a {
        width: 100%;
    }
}